Thu, 11 Apr 2024 13:19:24 -0400
add .luarc.jsonc
local fn = vim.fn local wininfo = fn.getwininfo(fn.win_getid())[1] or {} local is_loc = wininfo.loclist == 1 local qftitle = wininfo.variables.quickfix_title vim.bo.buflisted = false vim.wo.conceallevel = 2 vim.wo.concealcursor = "n" vim.wo.wrap = false -- easy close vim.keymap.set("n", "q", "<C-w>q", { buffer = true }) if is_loc then -- simplify noisy :ltag output if qftitle and string.match(qftitle, "^ltag") then -- Hide ctags regex anchors fn.matchadd("Conceal", [[|\zs\^\\V\|\\$\ze|]]) -- Hide lsp tagfunc line/col seek references fn.matchadd("Conceal", [[|\zs\\V\\%\|c\ze|]]) fn.matchadd("Conceal", [[|\\V\\%\d\+\zsl\\%]], 10, -1, { conceal = "," }) -- highlight match in line. if tagname begins with / the rest is a \v -- regex. match must be between vertical bars, so its the 2nd column. local tagstack = fn.gettagstack() if tagstack then local tagmatch = string.gsub(tagstack.items[1].tagname, "^/", "\\v", 1) fn.matchadd("Underlined", [[\m|.*\zs]] .. tagmatch .. [[\m\ze.*|]]) end end end