Skip to content

Commit 00b4700

Browse files
authored
runtime(diff): Update default links (#13776)
Problem: Current default links for `diffAdded`, `diffChanged`, and `diffRemoved` do not address the diff nature of the filetype. Solution: Use `DiffAdd`, `DiffChange`, and `DiffDelete`. closes: #13759 Signed-off-by: Evgeni Chasnovski <evgeni.chasnovski@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 0bca4a0 commit 00b4700

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

runtime/syntax/diff.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,9 @@ hi def link diffBDiffer Constant
378378
hi def link diffIsA Constant
379379
hi def link diffNoEOL Constant
380380
hi def link diffCommon Constant
381-
hi def link diffRemoved Special
382-
hi def link diffChanged PreProc
383-
hi def link diffAdded Identifier
381+
hi def link diffRemoved DiffDelete
382+
hi def link diffChanged DiffChange
383+
hi def link diffAdded DiffAdd
384384
hi def link diffLine Statement
385385
hi def link diffSubname PreProc
386386
hi def link diffComment Comment

0 commit comments

Comments
 (0)