Generic:vim中的python命令?

前端之家收集整理的这篇文章主要介绍了Generic:vim中的python命令?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
vim脚本中,只要 vim是使用 python功能构建的,就可以嵌入一些python代码.
function! IcecreamInitialize()
python << EOF
class StrawberryIcecream:
    def __call__(self):
        print('EAT ME')
EOF
endfunction

但是,有些人使用python3构建了vim.这为vim插件带来了一些兼容性问题.是否有一个通用命令调用计算机上安装的任何python版本?

这个片段可以确定我们正在使用哪个Python版本并切换到它(Python代表安装的那个版本).
if has('python')
    command! -nargs=1 Python python <args>
elseif has('python3')
    command! -nargs=1 Python python3 <args>
else
    echo "Error: Requires Vim compiled with +python or +python3"
    finish
endif

要加载python代码,我们首先要弄清楚它的位置(这里与Vim脚本位于同一目录下):

execute "Python import sys"
execute "Python sys.path.append(r'" . expand("<sfile>:p:h") . "')"

然后检查python模块是否可用.如果没有,请重新加载:

Python << EOF
if 'yourModuleName' not in sys.modules:
    import yourModuleName
else:
    import imp
    # Reload python module to avoid errors when updating plugin
    yourModuleName = imp.reload(yourModuleName)
EOF

两种称呼方式:
1.

" call the whole module
execute "Python yourModuleName"

" call a function from that module
execute "Python yourModuleName.aMethod()"

2.

" Call a method using map 
vnoremap <leader> c :Python yourModuleName.aMethod()<cr> 

" Call a module or method using Vim function
vnoremap <leader> c :<c-u> <SID>yourFunctionName(visualmode())<cr>
function! s:YourFunctionName(someName)
    Python YourFunctionName.aMethod(a:someName)
    Python YourFunctionName
endfunction
原文链接:https://www.f2er.com/bash/384757.html

猜你在找的Bash相关文章