1
0
forked from aniani/vim
vim/runtime/syntax/testdir/input/vim_ex_augroup.vim

20 lines
294 B
VimL
Raw Normal View History

" Vim :augroup command
augroup foo
autocmd BufRead * echomsg "Foo"
augroup END
augroup foo | autocmd! | augroup END
augroup! foo
augroup !@#$%^&*()_+
autocmd BufRead * echomsg "Foo"
augroup END
augroup !@#$%^&*()_+ | autocmd! | augroup END
augroup! !@#$%^&*()_+
" list groups
augroup