zoukankan      html  css  js  c++  java
  • Python 语法提示vim配置

    1. pydiction

    2. 默认 Vim 7.xx以上版本

    python_pydiction.vim  -- Vim plugin that autocompletes Python code.
    
    complete-dict         -- Dictionary file of Python keywords, modules, etc.
    
    pydiction.py          -- Python script to add more words to complete-dict.
    
    cd ~/.vim/bundle
    git clone https://github.com/rkulla/pydiction.git
    
    cp ~/.vim/bundle/pydiction/after/ftplugin/python_pydiction.vim   ~/.vim/after/ftplugin/python_pydiction.vim
    
    filetype plugin on
    
    
    let g:pydiction_location = '/path/to/complete-dict'
    
    # for example, if you used Pathogen to install Pydiction, you would set this to:
    
    let g:pydiction_location = '/home/user/.vim/bundle/pydiction/complete-dict'
    
    # and the dictionary will be available to all of your virtualenv's as well.
    
    # You can change the height of the completion menu by setting g:pydiction_menu_height in your vimrc:
    
    let g:pydiction_menu_height = 3 ( default : 8 )
    
  • 相关阅读:
    无题
    2G日产金士顿
    提防假TF卡,金士顿的识别 (有图)
    无题
    推荐小说
    开学了!
    测速软件
    提供《鬼吹灯》小说系列下载
    换博客了
    Kali_2020.01安装教程
  • 原文地址:https://www.cnblogs.com/jinhh/p/9914246.html
Copyright © 2011-2022 走看看