[Bf-blender-cvs] [0944750921f] master: Keymap: Ctrl-G now maps to Find Set Selected

Campbell Barton noreply at git.blender.org
Fri Aug 9 17:59:09 CEST 2019


Commit: 0944750921f1a63f01bbbd873cd560f529ee91ff
Author: Campbell Barton
Date:   Sat Aug 10 01:35:41 2019 +1000
Branches: master
https://developer.blender.org/rB0944750921f1a63f01bbbd873cd560f529ee91ff

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.

===================================================================

M	release/scripts/presets/keyconfig/keymap_data/blender_default.py

===================================================================

diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index fc0a00ae31e..7b58ac61c2c 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -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),
     ])



More information about the Bf-blender-cvs mailing list