diff options
author | Teddy Wing | 2023-10-06 20:03:58 +0200 |
---|---|---|
committer | Teddy Wing | 2023-11-06 20:54:14 +0100 |
commit | 4a0d731fdfa89071a9b159f982fd566466afa827 (patch) | |
tree | b6d4cea29c31437682c21e025357a3001fe31cc3 /bundle/prr/syntax/prr.vim | |
parent | 79aff1844f1defbe73801efa6dd176b64baba917 (diff) | |
download | dotvim-4a0d731fdfa89071a9b159f982fd566466afa827.tar.bz2 |
bundle/prr: Use stock diff highlighting
Change the diff highlighting to use the groups in:
PREFIX/share/vim/vim90/syntax/diff.vim
This way, the diff colours look like normal diffs.
Diffstat (limited to 'bundle/prr/syntax/prr.vim')
-rw-r--r-- | bundle/prr/syntax/prr.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/prr/syntax/prr.vim b/bundle/prr/syntax/prr.vim index 09fa817..328526a 100644 --- a/bundle/prr/syntax/prr.vim +++ b/bundle/prr/syntax/prr.vim @@ -32,7 +32,7 @@ syn match diffRemoved "^> -.*" " Define the default highlighting. " Only used when an item doesn't have highlighting yet -hi def link diffAdded Type -hi def link diffRemoved Statement +hi def link diffAdded Identifier +hi def link diffRemoved Special let b:current_syntax = "prr" |