[gnome-builder/wip/gtk4-port: 1138/1774] libide/gui: use ctrl+shift+space for "run again"




commit 3dc8b92e9b95636c90b9bbc4e89162dbc04a58cb
Author: Christian Hergert <chergert redhat com>
Date:   Tue May 24 12:49:33 2022 -0700

    libide/gui: use ctrl+shift+space for "run again"
    
    We don't really need the very easy to hit keybinding for build, that can
    be something with B in it. This is going to be the most common way people
    edit-then-run so make it quick/easy.

 src/libide/gui/gtk/keybindings.json | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/src/libide/gui/gtk/keybindings.json b/src/libide/gui/gtk/keybindings.json
index f4f504b96..ecaa03b2d 100644
--- a/src/libide/gui/gtk/keybindings.json
+++ b/src/libide/gui/gtk/keybindings.json
@@ -26,7 +26,10 @@
 /* Build Actions */
 { "trigger" : "<Control><Shift>l", "action" : "win.show-build-log", "when" : "hasProject()", "phase" : 
"capture" },
 { "trigger" : "<Control><Shift>r", "action" : "build-manager.rebuild", "when" : "hasProject()", "phase" : 
"capture" },
-{ "trigger" : "<Control><Shift>space", "action" : "build-manager.build", "when" : "hasProject()", "phase" : 
"capture" },
+{ "trigger" : "<Control><Shift>b", "action" : "build-manager.build", "when" : "hasProject()", "phase" : 
"capture" },
+
+/* Run Actions */
+{ "trigger" : "<Control><Shift>space", "action" : "run-manager.run", "when" : "hasProject()", "phase" : 
"capture" },
 
 /* New Terminal Actions */
 { "trigger" : "<Control><Shift>t", "action" : "win.new-terminal", "when" : "canEdit()", "phase" : "capture" 
},


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]