Skip to content

Commit

Permalink
fix(treesitter): always disable incremental mode for treesitter. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 22, 2023
1 parent 5477a4f commit 6e84716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/flash/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function M.jump(opts)
Config.get({ mode = "treesitter" }, opts, {
matcher = M.matcher,
labeler = function() end,
search = { multi_window = false, wrap = true },
search = { multi_window = false, wrap = true, incremental = false },
})
)

Expand Down

0 comments on commit 6e84716

Please sign in to comment.