newlisp.vim version 1.13
Posted: Fri Feb 01, 2008 6:00 pm
Vim syntax highlighting mode updated again. Changes in this version:
1. Symbols ending with a special character are highlighted in a different color now. Rationale: when user introduces some convention about postfixes ('foo?' for predicates, 'foo!' for destructive functions, 'foo&' for pass-like functions and so on), s/he usually intents to make them visually different. So I do them such. This affects user-defined symbols only, built-in symbols are still in the same color.
2. The tricky mechanic of error disabling, introduced in 1.10, is abandoned. Now I believe it was an useless and ugly hack. You can disable any certain highlighting you dislike by standard Vim means. An example: let us suppose that you dislike the feature of paragraph one and want the special symbols to be colored in the same way as all other symbols, in the way used by this plugin before. Then you can put the following line in your .vimrc:
hi link newlispSymbolSpecial newlispSymbol
, and highlighting returns to its good old way. Of course, if you want just this, you can also not upgrade at all, but this hint may be useful in future versions. ;-)
The plugin is located, as usual, here and there.
1. Symbols ending with a special character are highlighted in a different color now. Rationale: when user introduces some convention about postfixes ('foo?' for predicates, 'foo!' for destructive functions, 'foo&' for pass-like functions and so on), s/he usually intents to make them visually different. So I do them such. This affects user-defined symbols only, built-in symbols are still in the same color.
2. The tricky mechanic of error disabling, introduced in 1.10, is abandoned. Now I believe it was an useless and ugly hack. You can disable any certain highlighting you dislike by standard Vim means. An example: let us suppose that you dislike the feature of paragraph one and want the special symbols to be colored in the same way as all other symbols, in the way used by this plugin before. Then you can put the following line in your .vimrc:
hi link newlispSymbolSpecial newlispSymbol
, and highlighting returns to its good old way. Of course, if you want just this, you can also not upgrade at all, but this hint may be useful in future versions. ;-)
The plugin is located, as usual, here and there.