[描述]例如查看Vim的某項幫助內容,可以:h help-content, 查看Python-doc時是否能做到這樣?(我現在查看Python的幫助內容都是在IPython中看help-content?,但是這樣需要另開一個shell視窗)
:h help-content
help-content?
推薦你使用vim-ref
"python help" nnoremap <buffer> K :<C-u>let save_isk = &iskeyword \| \ set iskeyword+=. \| \ execute "!pydoc " . expand("<cword>") \| \ let &iskeyword = save_isk<CR>
這個是我在window是下面使用的, Linux的話 修改應該不大, 可以試試。
關鍵就是pydoc指令的問題。
pydoc
推薦你使用
vim-ref
這個是我在window是下面使用的, Linux的話 修改應該不大, 可以試試。
關鍵就是
pydoc
指令的問題。