File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2065,6 +2065,7 @@ NvimTreeWindowPicker
20652065There are also links to normal bindings to style the tree itself.
20662066
20672067NvimTreeNormal
2068+ NvimTreeNormalFloat
20682069NvimTreeEndOfBuffer (NonText)
20692070NvimTreeCursorLine (CursorLine)
20702071NvimTreeCursorLineNr (CursorLineNr)
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ local function get_links()
6666 OpenedFolderIcon = " NvimTreeFolderIcon" ,
6767 ClosedFolderIcon = " NvimTreeFolderIcon" ,
6868 Normal = " Normal" ,
69+ NormalFloat = " NormalFloat" ,
6970 NormalNC = " NvimTreeNormal" ,
7071 EndOfBuffer = " EndOfBuffer" ,
7172 CursorLineNr = " CursorLineNr" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ local PAT_CTRL = "^<C%-"
55local PAT_SPECIAL = " ^<.+"
66
77local WIN_HL = table.concat ({
8- " Normal:NvimTreeNormal" ,
8+ " NormalFloat:NvimTreeNormalFloat" ,
9+ " WinSeparator:NvimTreeWinSeparator" ,
910 " CursorLine:NvimTreeCursorLine" ,
1011}, " ," )
1112
Original file line number Diff line number Diff line change @@ -32,15 +32,16 @@ M.View = {
3232 wrap = false ,
3333 winhl = table.concat ({
3434 " EndOfBuffer:NvimTreeEndOfBuffer" ,
35- " Normal:NvimTreeNormal" ,
3635 " CursorLine:NvimTreeCursorLine" ,
3736 " CursorLineNr:NvimTreeCursorLineNr" ,
3837 " LineNr:NvimTreeLineNr" ,
3938 " WinSeparator:NvimTreeWinSeparator" ,
4039 " StatusLine:NvimTreeStatusLine" ,
4140 " StatusLineNC:NvimTreeStatuslineNC" ,
4241 " SignColumn:NvimTreeSignColumn" ,
42+ " Normal:NvimTreeNormal" ,
4343 " NormalNC:NvimTreeNormalNC" ,
44+ " NormalFloat:NvimTreeNormalFloat" ,
4445 }, " ," ),
4546 },
4647}
You can’t perform that action at this time.
0 commit comments