美文网首页
Mac Vim Python 问题解决方法

Mac Vim Python 问题解决方法

作者: Yao_Fairytale | 来源:发表于2018-08-07 09:58 被阅读0次

    Mac Vim Python 调用问题解决方法 vim link python 2

    brew install vim --with-python@2
    

    最好的方法用macvim取代vim,用下面的语句

    brew install macvim --with-override-system-vim --with-python@2
    brew link --overwrite macvim
    

    安装 python-mode 插件

    同时在 .vimrc 中添加以下语句。

    " Settings for python-mode
    " cd ~/.vim
    " git submodule add https://github.com/klen/python-mode bundle/pythonmode 
    let g:pymode_syntax = 1
    let g:pymode_syntax_builtin_objs = 0
    let g:pymode_syntax_builtin_funcs = 0
    

    如果有需要,安装vim时,可以输入命令brew info vim来查看有哪些可安装的dependencies。例如我的显示如下图,可按需求添加安装指令

    查看vim信息

    相关文章

      网友评论

          本文标题:Mac Vim Python 问题解决方法

          本文链接:https://www.haomeiwen.com/subject/sgkovftx.html