init: Move includeguards from keymap
authorStefan Huber <shuber@sthu.org>
Tue, 1 Dec 2020 08:23:27 +0000 (09:23 +0100)
committerStefan Huber <shuber@sthu.org>
Tue, 1 Dec 2020 08:23:27 +0000 (09:23 +0100)
init.vim
keymaps.vim

index 21e8f9a4704df75770bec602831f8ff214f883d8..08935f1364cd14ec878892cce241e9d45de6b6a5 100644 (file)
--- a/init.vim
+++ b/init.vim
@@ -167,6 +167,7 @@ au BufEnter *.h* let b:fswitchlocs='reg:/include/lib/,rel:.'
 
 au BufEnter *.cpp,*.cc,*.cxx let b:fswitchdst='h,hxx,hpp,hh'
 au BufEnter *.h,*.hh,*.hxx let b:fswitchdst='cc,c,cxx,cpp'
+au BufNewFile *.{h,hpp,hxx} call AddIncludeGuards()
 
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " Some plugin-specific settings
index 1ad0f136850807a3a045d6207c485c7ff9d67c25..8d7e5495790dfad746463cc2ab40db104d85b708 100644 (file)
@@ -19,7 +19,6 @@ xmap <C-k>     <Plug>(neosnippet_expand_target)
 
 au Filetype c,cpp,objc map <buffer> <F11> :vsplit<CR>:FSRight<CR>
 au Filetype c,cpp,objc map <buffer> <S-F11> :FSHere<CR>
-au BufNewFile *.{h,hpp,hxx} call AddIncludeGuards()
 
 au Filetype markdown map <buffer> <F5> :call RunMarkdown()<CR>