使用 jedi-vim 显示 python 文件的结构视图

showing structure view for python files using jedi-vim

jedi vim 是否支持像 intellijs https://www.jetbrains.com/help/idea/structure-tool-window-file-structure-popup.html 这样的东西?

这个非常简单的命令为您提供了文档的可操作大纲:

:g/def\|class/#

不想一直打字的可以贴图;并在同一步骤中使其更清洁:

augroup PythonStuff
    autocmd!
    autocmd FileType python nnoremap <buffer> <F12> :<C-u>g/\<def\>\|\<class\>/#<CR>
augroup END

发现 majutsushi/tagbar which does this pretty well actually. This video 也解释了它如何与 ruby 一起使用。