X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/fe8ffe7aebc0c358cd7891910806b02aba02d53c..b5c261362dfe9c254e6a865071689ef6ca8b4589:/vim/ftplugin/c.vim diff --git a/vim/ftplugin/c.vim b/vim/ftplugin/c.vim index 9dbf048..3b54992 100644 --- a/vim/ftplugin/c.vim +++ b/vim/ftplugin/c.vim @@ -7,10 +7,6 @@ augroup fswitch au BufEnter *.h let b:fswitchlocs = '.,reg:|include.*|src|' au BufEnter *.c let b:fswitchdst = 'h' au BufEnter *.c let b:fswitchlocs = 'reg:|source|include/**|' - au BufEnter *.hpp let b:fswitchdst = 'cpp,cxx,c' - au BufEnter *.hpp let b:fswitchlocs = 'reg:|include.*|src|' - au BufEnter *.c(pp|xx) let b:fswitchdst = 'hpp,h' - au BufEnter *.c(pp|xx) let b:fswitchlocs = 'reg:|src|include/**|' augroup END nnoremap gd :YcmCompleter GoTo