Skip to content

Commit 86d573d

Browse files
authored
fix: replace vertsplit highlights (#1142) (#1219)
1 parent 4288981 commit 86d573d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/nvim-tree-lua.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ There are also links to normal bindings to style the tree itself.
875875
Normal
876876
EndOfBuffer
877877
CursorLine
878-
VertSplit
878+
WinSeparator
879879
CursorColumn
880880

881881
There are also links for file highlight with git properties

lua/nvim-tree/colors.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ local function get_links()
6464
NormalNC = "NvimTreeNormal",
6565
EndOfBuffer = "EndOfBuffer",
6666
CursorLine = "CursorLine",
67-
VertSplit = "VertSplit",
67+
WinSeparator = "WinSeparator",
6868
CursorColumn = "CursorColumn",
6969
FileDirty = "NvimTreeGitDirty",
7070
FileNew = "NvimTreeGitNew",

lua/nvim-tree/view.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ M.View = {
2727
"EndOfBuffer:NvimTreeEndOfBuffer",
2828
"Normal:NvimTreeNormal",
2929
"CursorLine:NvimTreeCursorLine",
30-
"VertSplit:NvimTreeVertSplit",
30+
"WinSeparator:NvimTreeWinSeparator",
3131
"StatusLine:NvimTreeStatusLine",
3232
"StatusLineNC:NvimTreeStatuslineNC",
3333
"SignColumn:NvimTreeSignColumn",

0 commit comments

Comments
 (0)