nvim: Fix flash for search and operator pending
flash.nvim was activating on searches which, while perhaps useful for some people, was not for me. It stops the (incremental) search as soon as no valid target exists which drops you back into normal mode while still typing out the search and thus doing who-knows-what. The operator pending mode for the original jump mapping has been removed to allow the 'surround' mappings from mini plugin to always work correctly (`ysiw`, `csaw`, ...).
This commit is contained in:
parent
cb21789f3a
commit
434974284a
1 changed files with 1 additions and 17 deletions
|
@ -51,7 +51,7 @@ return {
|
|||
keys = {
|
||||
{
|
||||
"s",
|
||||
mode = { "n", "x", "o" },
|
||||
mode = { "n", "x" },
|
||||
function()
|
||||
require("flash").jump()
|
||||
end,
|
||||
|
@ -73,22 +73,6 @@ return {
|
|||
end,
|
||||
desc = "Remote Flash",
|
||||
},
|
||||
{
|
||||
"R",
|
||||
mode = { "o", "x" },
|
||||
function()
|
||||
require("flash").treesitter_search()
|
||||
end,
|
||||
desc = "Treesitter Search",
|
||||
},
|
||||
{
|
||||
"<c-s>",
|
||||
mode = { "c" },
|
||||
function()
|
||||
require("flash").toggle()
|
||||
end,
|
||||
desc = "Toggle Flash Search",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue