我终于决定尝试
Vim,因为我越来越沮丧的GUI编辑。到目前为止,我很喜欢它,但我找不到任何帮助,我有一个问题…
我试图映射命令:Pyrun到:python%在Vim使用cmap。如果我键入:cmap,映射显示得很好。但是,在键入:Pyrun,我得到这个错误消息:
Not an editor command: Pyrun.
这里是我试图.vimrc:
:autocmd FileType python :cmap Pyrun<cr> !python %<cr> :autocmd FileType python :cmap Intpyrun<cr> !python -i %<cr>
我能做些什么来解决这个问题?
我会尝试这样在你的.vimrc或你的ftplugin / python_ft.vim
原文链接:https://www.f2er.com/bash/389722.htmlcommand Pyrun execute "!python %" command Intpyrun execute "!python -i %"
然后:Pyrun和:Intpyrun应该工作
然后,您可以将功能键映射到每个
map <F5> :Pyrun<CR> map <F6> :Intpyrun<CR>