neovim configuration using rocks.nvim plugin manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(quicker): unset `inccommand` option on enter

+13
+13
lua/core/autocmds.lua
··· 109 109 vim.cmd.nohlsearch() 110 110 end), 111 111 }) 112 + 113 + if vim.o.inccommand == "split" then 114 + au("BufEnter", { 115 + group = aug("fix_quicker_nvim"), 116 + callback = vim.schedule_wrap(function () 117 + if vim.bo.buftype == "quickfix" then 118 + vim.o.inccommand = "nosplit" 119 + else 120 + vim.o.inccommand = "split" 121 + end 122 + end) 123 + }) 124 + end