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