X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b92b8fb5f41b60384b67db994cccbd97cd3796ab..e52d59b88c7bc3c0478b4f4d83717778d379ce32:/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