User Tools

Site Tools


vim:custom_syntax_highlighting

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
vim:custom_syntax_highlighting [2021/02/15 20:55] – created petervim:custom_syntax_highlighting [2021/02/15 21:59] (current) peter
Line 11: Line 11:
 ---- ----
  
 +<file vim syntax.vim>
 +syntax keyword cFunction abort
 +syntax keyword cFunction abs
 +syntax keyword cFunction acos
 +syntax keyword cFunction acosh
 +syntax keyword cFunction alarm
 +...
 +...
 +highlight link cFunction Function
 +</file>
 +
 +<WRAP info>
 +**NOTE:**  
 +
 +  * The top few lines designate certain keywords as belonging to the cFunction class.
 +  * The line at the bottom links the cFunction class to the universal class Function.
 +
 +</WRAP>
 +
 +----
 +
 +===== Load the Syntax file =====
 +
 +
 +<code vim>
 +:so ~/.vim/syntax.vim
 +</code>
 +
 +----
 +
 +===== Keybinding to perform the load of the Syntax file =====
 +
 +<code vim>
 +nmap + :so ~/.vim/syntax.vim
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  Typing the plus key in normal mode in Vim, will load the custom syntax highlighting rules, based on what language is currently being using.
 +</WRAP>
 +
 +----
 +
 +===== References =====
 +
 +https://github.com/octol/vim-cpp-enhanced-highlight/blob/master/after/syntax/c.vim
 +
 +https://github.com/octol/vim-cpp-enhanced-highlight
vim/custom_syntax_highlighting.1613422548.txt.gz · Last modified: 2021/02/15 20:55 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki