James Tan
James Tan
> If you are using Windows, try configuring settings like this: > > ```json > "code-runner.executorMap": { > "cpp": "cd $dir && g++ \"$fileName\" -o \"$fileNameWithoutExt.exe\" && & \"$dir$fileNameWithoutExt.exe\"" >...
Hi, what's the status of this feature request?
In the meantime, you could manually hide/unhide `lualine` with `autocmd`. Example ```lua vim.api.nvim_create_autocmd({ 'User' }, { pattern = 'visual_multi_start', callback = function() require('lualine').hide() end }) vim.api.nvim_create_autocmd({ 'User' }, { pattern...
I ain't sure why, could you try to reproduce with the following minimal config? ```lua -- repro.lua local root = vim.fn.fnamemodify("./.repro", ":p") for _, name in ipairs({ "config", "data", "state",...
Tried with a lower value, even at 1 it is still lagging. Is there a way to dynamically set linematch value to 0 when the diffs are too large?
Just to clarify, did the 10k line file that you tested has a lot of changes? Because I found this weird issue when I accidentally retab a 1k file which...
I see, thanks for the explanation!
Had the same problem too, but I didn't have `vim-illuminate` installed. Bisecting shows that [74b2ed7](https://github.com/ggandor/leap.nvim/commit/74b2ed7a0fac2fedf191d673f2d0883aab3dfe9c) introduces this bug Edit: nvim version is `NVIM v0.10.0-dev-3057+g9e2f378b6`
The reason is that the fix required has been reverted on https://github.com/neovim/neovim/pull/28235 and now that `nvim__redraw` has been merged on nightly though it's experimental (https://github.com/neovim/neovim/pull/28101), calling `nvim__redraw` on `LeapSelectPre` should...
This is what I temporarily used: ```diff overrides = function(C) local T = C.theme + local P = C.palette return { -- https://github.com/rebelot/kanagawa.nvim#dark-completion-popup-menu @@ -25,7 +26,9 @@ return { PmenuSbar...