diff --git a/doc/nvim-tree-lua.txt b/doc/nvim-tree-lua.txt index 35fada345ef..491b97d1809 100644 --- a/doc/nvim-tree-lua.txt +++ b/doc/nvim-tree-lua.txt @@ -875,7 +875,7 @@ There are also links to normal bindings to style the tree itself. Normal EndOfBuffer CursorLine -WinSeparator +VertSplit CursorColumn There are also links for file highlight with git properties diff --git a/lua/nvim-tree/colors.lua b/lua/nvim-tree/colors.lua index ea962f20847..91986ddb729 100644 --- a/lua/nvim-tree/colors.lua +++ b/lua/nvim-tree/colors.lua @@ -64,7 +64,7 @@ local function get_links() NormalNC = "NvimTreeNormal", EndOfBuffer = "EndOfBuffer", CursorLine = "CursorLine", - WinSeparator = "WinSeparator", + VertSplit = "VertSplit", CursorColumn = "CursorColumn", FileDirty = "NvimTreeGitDirty", FileNew = "NvimTreeGitNew", diff --git a/lua/nvim-tree/view.lua b/lua/nvim-tree/view.lua index d58e93b8eab..b8ed3d47eb5 100644 --- a/lua/nvim-tree/view.lua +++ b/lua/nvim-tree/view.lua @@ -27,7 +27,7 @@ M.View = { "EndOfBuffer:NvimTreeEndOfBuffer", "Normal:NvimTreeNormal", "CursorLine:NvimTreeCursorLine", - "WinSeparator:NvimTreeWinSeparator", + "VertSplit:NvimTreeVertSplit", "StatusLine:NvimTreeStatusLine", "StatusLineNC:NvimTreeStatuslineNC", "SignColumn:NvimTreeSignColumn",