vimrc的设置let g:pymode_python = 'python3'中的g:是什么意思?

来源:4-9 python-mode把 vim 打造成轻量 Python IDE.mp4

飞翔在天

2020-02-11 14:04

vimrc的设置let g:pymode_python = 'python3'中的g:是什么意思?

好多配置中都有g:的,一直不知道什么意思

写回答 关注

1回答

  • WatsonBauer
    2020-04-04 23:04:24

    :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.


玩转Vim 从放弃到爱不释手

作为程序员你还不知道编辑器之神 Vim 吗,带你从零开始学习 vim 编辑器。

28446 学习 · 78 问题

查看课程

相似问题