Custom syntax in VIM: Difference between revisions

From XDSwiki
Jump to navigation Jump to search
(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 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.


* create file ~/.vim/syntax/inp.vim
* put
  syntax match XDS_Comment /!.*$/
  syntax match XDS_Comment /!.*$/
* create file ~/.vim/ftdetect/inp.vim
: 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
* create file ~/.vimrc
: 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 15: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)