Skip to content

Commit

Permalink
fix: disable incsearch hack for nightly (no longer needed)
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed May 3, 2024
1 parent 0cbe3f8 commit 02d698a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lua/noice/util/hacks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ end

function M.enable()
M.reset_augroup()
M.fix_incsearch()
M.fix_input()
M.fix_redraw()
M.fix_cmp()
M.fix_vim_sleuth()

-- Hacks for Neovim < 0.10
if vim.fn.has("nvim-0.10") == 0 then
M.fix_incsearch()
end
end

function M.fix_vim_sleuth()
Expand Down

0 comments on commit 02d698a

Please sign in to comment.