Isak Buhl-Mortensen

Results 22 comments of Isak Buhl-Mortensen

There is a simple fix for this, simply clearing the buffer local keymaps `tree` by adding the following single line of code ```lua M.get_tree(mode, buf).tree = Tree:new() ``` Specifically adding...

After some more investigation I've found that this also happens with `non local keymaps`.

I found something that seems to work , will attempt making a PR soon ```lua function M.update_keymaps(mode, buf) ---@type Keymap[] local keymaps = buf and vim.api.nvim_buf_get_keymap(buf, mode) or vim.api.nvim_get_keymap(mode) --...

Should I open another issue, or is the following behavior similar enough to this original issue description: 1. create the following keymap ```lua vim.keymap.set('n', 'JJ', function() print 'registering leader>ca' local...

Maybe related. When exiting diffview, which-key will still list all buffer local keybindings even though they were deleted.

https://github.com/sindrets/diffview.nvim/issues/382 opened but ignored ...

I've noticed that even if we try to work around this by for instance conditionally setting ``` telescope.defaults.border = false ``` we seem to lose the nice titles that we...

Ok, nevermind, this is the solution that worked for me the best, just do not set `vim.opt.winborder`, or rather have it set to its default which should be `win.opt.winborder =...

Any chance that this can get merged in @lewis6991 ? I've simplified it a lot, and avoided that extra list of ranges 🤞

I also really want this, will take a look and see if I can come with a neat proposal @toupeira :)