gpt4 book ai didi

python - 如何将参数从 vimscript 函数传递到 python 接口(interface)?

转载 作者:太空狗 更新时间:2023-10-29 20:12:25 27 4
gpt4 key购买 nike

例如,处理位置参数:

function! Example(arg)
python <<_EOF_

# do something with a:arg

_EOF_
endfunction

或...列表:

function! Example(...)
python <<_EOF_

# do something with a:000, a:1, a:2, etc.

_EOF_
endfunction

无论如何我可以做到这一点吗?

最佳答案

您可以通过 vim.eval() 像任何其他 Vimscript 表达式一样检索函数参数:

function! Example(arg)
python << _EOF_

import vim
print "arg is " + vim.eval("a:arg")

_EOF_
endfunction

关于python - 如何将参数从 vimscript 函数传递到 python 接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27901211/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com