vimrc的设置let g:pymode_python = 'python3'中的g:是什么意思?
vimrc的设置let g:pymode_python = 'python3'中的g:是什么意思?
好多配置中都有g:的,一直不知道什么意思
vimrc的设置let g:pymode_python = 'python3'中的g:是什么意思?
好多配置中都有g:的,一直不知道什么意思
2020-02-11
:help internal-variables
(nothing) In a function: local to a function; otherwise: global buffer-variable b: Local to the current buffer. window-variable w: Local to the current window. tabpage-variable t: Local to the current tab page. global-variable g: Global. local-variable l: Local to a function. script-variable s: Local to a :source'ed Vim script. function-argument a: Function argument (only inside a function). vim-variable v: Global, predefined by Vim.
举报