Last active
August 29, 2015 14:04
-
-
Save DineshReddyK/9a79920d32d9b0189f7d to your computer and use it in GitHub Desktop.
Auto correct
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
augroup abbrcmds | |
autocmd! | |
"short hands for cpp | |
autocmd FileType cpp :iabbrev iff if ()<left> | |
autocmd FileType cpp :iabbrev elf else if ()<left> | |
autocmd FileType cpp :iabbrev elsee else ()<left> | |
"short hands for shell | |
autocmd FileType sh :iabbrev iff if []<left> | |
autocmd FileType sh :iabbrev elf elseif []<left> | |
augroup END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment