X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b92b8fb5f41b60384b67db994cccbd97cd3796ab..e48f84d521de72d8f39997054e57ae43f44c0d4b:/vim/ftplugin/c.vim?ds=sidebyside 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