diff --git a/doc/nvim-tree-lua.txt b/doc/nvim-tree-lua.txt index 35fada34..491b97d1 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 ea962f20..91986ddb 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 d58e93b8..b8ed3d47 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",