level 2
这是vimrc文件中关于插件的部分,实测如果注释掉jedi-vim就不会有这种情况发生。
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
"let Vundle manage Vundle
Bundle 'VundleVim/Vundle.vim'
"my Bundle here:
"
" original repos on github
Bundle 'jiangmiao/auto-pairs'
Bundle 'kien/ctrlp.vim'
Bundle 'sjl/gundo.vim'
Bundle 'Valloric/ListToggle'
Bundle 'Valloric/YouCompleteMe'
Bundle 'rdnetto/YCM-Generator', {'branch':'stable'}
Bundle 'nvie/vim-flake8'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'scrooloose/nerdcommenter'
Bundle 'jistr/vim-nerdtree-tabs'
Bundle 'powerline/powerline'
Bundle 'scrooloose/nerdtree'
Bundle 'tpope/vim-fugitive'
Bundle 'sukima/xmledit'
Bundle 'godlygeek/tabular'
Bundle 'plasticboy/vim-markdown'
Bundle 'iamcco/mathjax-support-for-mkdp'
Bundle 'iamcco/markdown-preview.vim'
"Bundle 'vim-syntastic/syntastic'
"Bundle 't9md/vim-quickhl'
"..................................
" vim-scripts repos
"Bundle 'vcscommand.vim'
"这个插件会导致开启vim终端打空格
Bundle 'davidhalter/jedi-vim'
Bundle 'SudoEdit.vim'
Bundle 'cscope.vim'
Bundle 'header.vim'
Bundle 'ShowPairs'
Bundle 'LargeFile'
Bundle 'EasyGrep'
Bundle 'CCTree'
Bundle 'Tagbar'
Bundle 'a.vim'
Bundle 'VOoM'
jedi-vim部分的配置(话说根据配置文件看我已经关掉了所有功能但是依旧能用。。。)
"
" let g:jedi#use_tabs_not_buffers = 1
" let g:jedi#use_splits_not_buffers = "left"
" let g:jedi#goto_command = "<leader>d"
" let g:jedi#goto_assignments_command = "<leader>g"
" let g:jedi#goto_definitions_command = ""
" let g:jedi#documentation_command = "K"
" let g:jedi#usages_command = "<leader>n"
" let g:jedi#completions_command = "<C-Space>"
" let g:jedi#rename_command = "<leader>r"
let g:jedi#completions_enabled = 0
2017年08月19日 08点08分
