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...") |
(No difference)
|
Revision as of 14:11, 26 April 2017
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_Comment /!.*$/
- create file ~/.vim/ftdetect/inp.vim
autocmd BufRead,BufNewFile *.INP set filetype=inp
- create file ~/.vimrc
highlight def link XDS_Comment Comment