[描述]
例如查看Vim的某項幫助內容,可以:h help-content
, 查看Python-doc時是否能做到這樣?
(我現在查看Python的幫助內容都是在IPython中看help-content?
,但是這樣需要另開一個shell視窗)
给我你的怀抱2017-05-16 16:39:35
"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
指令的問題。