Keymap: Ctrl-G now maps to Find Set Selected

This finds using the current selection instead
of using the text in the find side-bar.

More useful for quickly jump to other instances of a word.
This commit is contained in:
Campbell Barton 2019-08-10 01:35:41 +10:00
parent 18668a20cb
commit 0944750921
1 changed files with 1 additions and 1 deletions

View File

@ -2128,7 +2128,7 @@ def km_text_generic(_params):
),
("text.start_find", {"type": 'F', "value": 'PRESS', "ctrl": True}, None),
("text.jump", {"type": 'J', "value": 'PRESS', "ctrl": True}, None),
("text.find", {"type": 'G', "value": 'PRESS', "ctrl": True}, None),
("text.find_set_selected", {"type": 'G', "value": 'PRESS', "ctrl": True}, None),
("text.replace", {"type": 'H', "value": 'PRESS', "ctrl": True}, None),
])