Use explicit commands in example snippet

This commit is contained in:
Matthieu Petiteau 2022-04-28 21:02:53 +01:00 committed by Fox Kiester
parent c129552001
commit ba5a39cd2e
1 changed files with 3 additions and 3 deletions

View File

@ -202,9 +202,9 @@ You can use ~setq-local~ set the local value of a variable. If the variable is n
This would be the vim equivalent:
#+begin_src vimrc
au c_settings
au!
au FileType c setlocal noexpandtab
augroup c_settings
autocmd!
autocmd FileType c setlocal noexpandtab
augroup END
#+end_src