Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用jedi-vim设置 Vim 以进行 Python 开发。我希望 jedi-vim 导航到 Ctrl+click 上的声明(如在 Pycharm 中)而不是默认的<leader>d. 如何做到这一点?
<leader>d
也许(未测试):
let g:jedi#goto_command = "<C-LeftMouse>"
在.vimrc您加载插件之前。比<leader>d不再工作了。
.vimrc
注意:仅 gVim,不能在终端中工作!