diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-03-07 07:52:40 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-03-07 07:52:40 -0700 |
commit | 02cc3b9fe2b15721b68d6920aaa50d0eaf0d98bf (patch) | |
tree | a3902e7fa7a9c09e9766ed6aec46f1364a338ab6 /plugin/vim-options.vim | |
parent | 5266a8f739062531516baa618c9066defcb0f468 (diff) |
Disable annoying preview https://github.com/python-mode/python-mode/issues/88
Diffstat (limited to 'plugin/vim-options.vim')
-rw-r--r-- | plugin/vim-options.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 5b299f5..ed17b70 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -112,7 +112,7 @@ if has('nvim') set backupdir=.vimcache/backup/ set directory=.vimcache/swp/ let g:syntastic_python_python_exec = '/usr/bin/python3' - set completeopt=menu,preview,noinsert " default is menu,preview. Don't insert text until selection is made + set completeopt=menu,noinsert " default is menu,preview. Don't insert text until selection is made nnoremap <leader>er :call RestoreSession()<CR> nnoremap <leader>y :call system('nc -w 1 172.17.0.1 41401', @0)<CR> tnoremap <A-h> <C-\><C-N><C-w>h |