* feat(#1079): add highlight NvimTreeCopiedText and NvimTreeCutText * feat(#1079): add highlight NvimTreeCopiedText and NvimTreeCutText * feat(#1079): node may not be present in copy and cut * feat(#1079): add renderer.highlight_clipboard * feat(#1079): renderer.highlight_clipboard takes options, style cut/copy HL * feat(#1079): renderer.highlight_clipboard takes options, style cut/copy HL * feat(#1079): use an enum for highlight position * feat(#1079): diagnostics uses _append_highlight
21 lines
275 B
Lua
21 lines
275 B
Lua
local M = {}
|
|
|
|
---Setup options for "highlight_*"
|
|
---@enum HL_POSITION
|
|
M.HL_POSITION = {
|
|
none = 0,
|
|
icon = 1,
|
|
name = 2,
|
|
all = 4,
|
|
}
|
|
|
|
---Setup options for "*_placement"
|
|
---@enum ICON_PLACEMENT
|
|
M.ICON_PLACEMENT = {
|
|
signcolumn = 0,
|
|
before = 1,
|
|
after = 2,
|
|
}
|
|
|
|
return M
|