Keymap to immediately global search current selection #13842
-
I have the following keymap: [keys.normal]
C-f = ["search_selection_detect_word_boundaries", "global_search"] This opens my current selection in the global search, so I don't need to hit But as you see, I still need to hit enter to confirm the pre-filled "/" register for the search. Unfortunately none of these worked: C-f = ["search_selection_detect_word_boundaries", "global_search", "ret"] |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can use a macro keybinding for this so it's equivalent to hitting the keys [keys.normal]
C-f = "@*<space>/<ret>" |
Beta Was this translation helpful? Give feedback.
You can use a macro keybinding for this so it's equivalent to hitting the keys
*<space>/<ret>
: