vim:custom_syntax_highlighting
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
vim:custom_syntax_highlighting [2021/02/15 20:55] – created peter | vim: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 | ||
+ | </ | ||
+ | |||
+ | <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. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Load the Syntax file ===== | ||
+ | |||
+ | |||
+ | <code vim> | ||
+ | :so ~/ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Keybinding to perform the load of the Syntax file ===== | ||
+ | |||
+ | <code vim> | ||
+ | nmap + :so ~/ | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | https:// |
vim/custom_syntax_highlighting.1613422548.txt.gz · Last modified: 2021/02/15 20:55 by peter