From b8160e30a2446c807c16f0ef02aaac48d5e0b004 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Sat, 26 May 2018 11:05:04 -0600 Subject: Disable path (autocomplete issues) remove enter for autocomplete --- plugin/vim-options.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugin/vim-options.vim') diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 215af95..cbcd5e0 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -10,7 +10,9 @@ set wildmenu " Turn on wildmenu for vim, Neovim defaults to on set incsearch " Shows results for '/' search as you are typing the search set hlsearch " After a '/' search, highlight the matches " Regular settings -set path=** " Set path to look at all directories under current root +" Don't be a fool, setting path will make all kinds of funky things happen +" with the autocomplete +"set path=** " Set path to look at all directories under current root set wildignore=*/app/cache,*/vendor,*/env,*.pyc,*/venv,*/__pycache__ " Wildmenu will ignore these folder/file types set expandtab " Expand tabs into spaces set tabstop=4 " Default to 4 spaces @@ -207,8 +209,6 @@ noremap l " Faster next functions nnoremap [q :cprev nnoremap ]q :cnext -" Autocomplete popup mappings -inoremap pumvisible() ? "\" : "\" " Some formatting shortcuts nnoremap g1 V:s/\<./\u&/g:noh nnoremap g2 V:s/-/ /g:noh -- cgit v1.2.3