From 1266eaedd83a2d332a0fbf266a6a6a4f41edd40a Mon Sep 17 00:00:00 2001 From: Barrett Ruth <62671086+barrettruth@users.noreply.github.com> Date: Sun, 15 Mar 2026 13:14:45 -0400 Subject: [PATCH] fix(buffer): reveal concealed text on cursor line in insert mode (#166) Problem: `concealcursor` was set to `'nic'`, keeping forge tokens and task IDs concealed even in insert mode. This makes editing lines with `gh:user/repo#42` or full URLs difficult since the raw text is hidden. Solution: Change `concealcursor` from `'nic'` to `'nc'` so the cursor line reveals concealed text when entering insert mode. --- lua/pending/buffer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/pending/buffer.lua b/lua/pending/buffer.lua index c98ebf9..04bebd9 100644 --- a/lua/pending/buffer.lua +++ b/lua/pending/buffer.lua @@ -399,7 +399,7 @@ end ---@param winid integer local function set_win_options(winid) vim.wo[winid].conceallevel = 3 - vim.wo[winid].concealcursor = 'nic' + vim.wo[winid].concealcursor = 'nc' vim.wo[winid].winfixheight = true end