[gnome-builder/gnome-builder-3-18] vim: <shift> is not needed with asciicircum



commit 6b68b83bf8b7acc1aa044ad4035fdbe586bfbb78
Author: Christian Hergert <chergert redhat com>
Date:   Tue Oct 13 10:51:52 2015 -0700

    vim: <shift> is not needed with asciicircum
    
    As Ray pointed out, we can drop the use of <shift> here.

 data/keybindings/vim.css |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/data/keybindings/vim.css b/data/keybindings/vim.css
index 66c3ce6..2733bfa 100644
--- a/data/keybindings/vim.css
+++ b/data/keybindings/vim.css
@@ -333,8 +333,8 @@
   /* move to line offset of zero, and first non-whitespace char, end of line */
   bind "0" { "movement" (first-char, 0, 1, 0)
              "clear-count" () };
-  bind "<shift>asciicircum" { "movement" (first-nonspace-char, 0, 1, 0)
-                              "clear-count" () };
+  bind "asciicircum" { "movement" (first-nonspace-char, 0, 1, 0)
+                       "clear-count" () };
   bind "dollar" { "movement" (last-char, 0, 1, 0)
                   "clear-count" () };
   bind "bar" { "movement" (nth-char, 0, 1, 1)
@@ -1184,7 +1184,7 @@
                 "set-mode" ("vim-normal", permanent) };
 
   bind "0" { "movement" (first-char, 1, 1, 0) };
-  bind "<shift>asciicircum" { "movement" (first-nonspace-char, 1, 0, 0) };
+  bind "asciicircum" { "movement" (first-nonspace-char, 1, 0, 0) };
   bind "dollar" { "movement" (last-char, 1, 1, 0) };
   bind "bar" { "movement" (nth-char, 1, 1, 1) };
 


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