我开始使用VIM编程Python。我遇到了一些问题,希望有人可以帮我解决这个问题。
“gd”命令应该将您带到第一个在当前函数中定义/使用变量的位置。根据我的理解,它与“[[”转到函数顶部,然后执行搜索变量名称相同。
问题是,当我在Python函数中尝试这个时,vim会在整个文件中找到第一个变量。
对于为什么会发生这种情况/我如何解决这个问题的任何想法?
答案 0 :(得分:3)
我认为问题是由于Vim处理函数的方式。来自[[
的文档:
*[[*
[[ [count] sections backward or to the previous '{' in
the first column. |exclusive|
Note that |exclusive-linewise| often applies.
除非某个部分以某种方式专门为python文件定义(我不相信这是可能的,因为它们应该是两个字母的nroff部分),这将假设应该有一个开括号第一列,与python文件无关。
我建议在Vim邮件列表上询问是否有任何插件或解决方法。或者,您可以定义如下映射:
nmap gd :let varname = '\<<C-R><C-W>\>'<CR>?\<def\><CR>/<C-R>=varname<CR><CR>
这可以通过一个函数更优雅地完成,但这只是一个应该工作的快速黑客。它将gd
映射到一个函数,该函数设置变量'varname'以保存光标所在的单词,向后搜索def,然后向前搜索变量:
:let varname = " Variable setting
'\< " String start and word boundary
<C-R><C-W> " Ctrl-R, Ctrl-W: pull in the word under the cursor
\>' " Word boundary and string end
<CR> " Enter - finish this command
? " Search backwards for...
\<def\> " def but not undefined etc (using word boundaries)
<CR> " Enter - Perform search
/ " Now search forward
<C-R>= " Pull in something from an expression
varname<CR> " The expression is 'varname', so pull in the contents of varname
<CR> " Enter - perform search
答案 1 :(得分:2)
我没有在我的Vim配置中重新定义varname,它运行良好,但我用vthon编译了vim。
也许这就是问题?
您是否安装了VIM版本7.x,并使用Python支持进行编译?要检查此内容,请输入:python print “hello, world”
进入VIM。如果您看到类似的错误消息
E319: Sorry, the command is not available in this version
,
那么是时候换一个新的了。