Click on the package to download.
simple_highlighting.vim |
2.1 |
2021-04-04 |
7.2 |
Pev Hall |
Fixed issue #4:
When highlighting on a visual selection the script does not current escape the magic characters.
This causes undesirable behavior. For instance it you tried to match "...a" with a visual selection match you are going to end up with everything that has three characters before an a highlighted. |
simple_highlighting.vim |
2.0 |
2020-07-19 |
7.2 |
Pev Hall |
New version number needed since the API has changed with slot 0 being removed.
Added conferable default slot. To do this I needed to remove slot 0. So now the slots start at 1 and 0 means the default slot. The default slot can be changed by using the \":Hd\" command \":Hd 2\" will change the default highlight slot to 2.
Fixed an issue with Hw where it was writing to many arguments for Ha due to vim error E740. It now breaks these long commands into multiple files if as needed. |
simpleHighlighting.vimrc |
1.2.1 |
2015-07-25 |
7.2 |
Pev Hall |
* minor fix: stopped the cursor from moving a character when highlighting the word underneath it.
* moved version into the file and out of the file name |
simpleHighlightingV1.2.vimrc |
1.2.0 |
2015-01-05 |
7.2 |
Pev Hall |
Added Hw (Highlight Write) function use to create a vim source file for storing (and potential modifying) highlight settings |
simpleHighlightingV1.1.vimrc |
1.1.0 |
2014-08-28 |
7.2 |
Pev Hall |
Fixed issue when using commands with multiple numbers eg
:Hs 0 2
Two major improvements:
* If you highlight a word (or pattern) in a highlight slot where the word/pattern already exists. It now removes the highlight (so you don't have to clear all the highlights in the slot). If it exits in a different slot it will remove it from the old slot before putting it in the new.
* Added new command "Ha" (Highlight add) so it is much easier to add highlights that use regular expressions. See description for more information |
simple_highlighting.vimrc |
1.0.0 |
2013-12-17 |
7.2 |
Pev Hall |
Major fix: Removed conflicts when multiple windows are editing same buffer. |
simple_highlighting |
0.9.1 |
2013-08-11 |
7.2 |
Pev Hall |
Missed some dependent functions in previous commit. |