We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66ccbe3 commit 132a0eeCopy full SHA for 132a0ee
lua/namu/namu_symbols/helpers.lua
@@ -87,6 +87,7 @@ local function add_highlight(buf, ns_id, line, col_start, col_end, hl_group)
87
local end_col = col_end == -1 and #line_content or math.min(col_end, #line_content)
88
89
if end_col > col_start then
90
+ -- TODO: need to move to set_extmarks -- just couldn't get it to work quickly, so this stays for now
91
vim.api.nvim_buf_add_highlight(buf, ns_id, hl_group, line, col_start, end_col)
92
end
93
0 commit comments