[gnome-builder] emacs: Fix search keybinding on sourceview



commit 88091b4035694751657e612c10a5b688575e6351
Author: Carlos Garnacho <carlosg gnome org>
Date:   Mon May 25 13:55:28 2015 +0200

    emacs: Fix search keybinding on sourceview
    
    <ctrl>s was attempting to trigger an action on an unknown place.

 data/keybindings/emacs.css |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/data/keybindings/emacs.css b/data/keybindings/emacs.css
index 393767b..fd6a5a6 100644
--- a/data/keybindings/emacs.css
+++ b/data/keybindings/emacs.css
@@ -51,7 +51,7 @@
   bind "<ctrl>x" { "set-mode" ("emacs-x", transient) };
   bind "<ctrl>underscore" { "undo" () };
   bind "<alt>x" { "action" ("workbench", "show-command-bar", "") };
-  bind "<ctrl>s" { "action" ("editor-frame", "find", "") };
+  bind "<ctrl>s" { "action" ("frame", "find", "") };
   bind "<ctrl>period" { "action" ("workbench", "global-search", "") };
   bind "<alt>period" { "goto-definition" () };
   bind "<ctrl>comma" { "action" ("app", "preferences", "") };


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