Custom syntax in VIM: Difference between revisions
Jump to navigation
Jump to search
Docandreas (talk | contribs) (Created page with "In VIM, you can define a custom syntax to display comments differently from XDS parameters. This aids legibility. * create file ~/.vim/syntax/inp.vim syntax match XDS_Commen...") |
Docandreas (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
In VIM, you can define a custom syntax to display comments differently from XDS parameters. This aids legibility. | In VIM, you can define a custom syntax to display comments differently from XDS parameters. This aids legibility. | ||
* | * put | ||
syntax match XDS_Comment /!.*$/ | syntax match XDS_Comment /!.*$/ | ||
: into ~/.vim/syntax/inp.vim (create file if it doesn't exist) | |||
* put | |||
autocmd BufRead,BufNewFile *.INP set filetype=inp | autocmd BufRead,BufNewFile *.INP set filetype=inp | ||
: into ~/.vim/ftdetect/inp.vim (create file if it doesn't exist) | |||
* put | |||
highlight def link XDS_Comment Comment | highlight def link XDS_Comment Comment | ||
: into ~/.vimrc (create file if it doesn't exist) |
Latest revision as of 14:16, 26 April 2017
In VIM, you can define a custom syntax to display comments differently from XDS parameters. This aids legibility.
- put
syntax match XDS_Comment /!.*$/
- into ~/.vim/syntax/inp.vim (create file if it doesn't exist)
- put
autocmd BufRead,BufNewFile *.INP set filetype=inp
- into ~/.vim/ftdetect/inp.vim (create file if it doesn't exist)
- put
highlight def link XDS_Comment Comment
- into ~/.vimrc (create file if it doesn't exist)