helix icon indicating copy to clipboard operation
helix copied to clipboard

Add extend_search_all command.

Open DerSaidin opened this issue 6 months ago • 1 comments

This allows me to replicate my kakoune config:

  map global normal <a-%> '*%s<ret>'

With helix config:

  "A-%" = ["search_selection", "extend_search_all"]

DerSaidin avatar Jun 04 '25 06:06 DerSaidin

This usecase is already possible with a similar macro keybinding:

[keys.normal]
"A-%" = "@*%s<ret>"

the-mikedavis avatar Jun 06 '25 14:06 the-mikedavis