texinfo-commits
[Top][All Lists]
Advanced

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

[7675] interchange M-l and M-h for vi-keys


From: gavinsmith0123
Subject: [7675] interchange M-l and M-h for vi-keys
Date: Sun, 19 Feb 2017 08:16:18 -0500 (EST)

Revision: 7675
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7675
Author:   gavin
Date:     2017-02-19 08:16:17 -0500 (Sun, 19 Feb 2017)
Log Message:
-----------
interchange M-l and M-h for vi-keys

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/doc/info-stnd.texi
    trunk/info/infomap.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2017-02-19 13:03:57 UTC (rev 7674)
+++ trunk/ChangeLog     2017-02-19 13:16:17 UTC (rev 7675)
@@ -1,5 +1,14 @@
 2017-02-19  Gavin Smith  <address@hidden>
 
+       * info/infomap.c (default_vi_like_ea_keys): Interchange the 
+       meanings of M-h and M-l to match line editing commands of GNU 
+       Less.  (The former bindings appear to have been in place since 
+       the beginning, so likely no-one has ever used them).
+       * doc/info-stnd.texi (infokey format): Interchange M-h and M-l
+       in sample infokey file.
+
+2017-02-19  Gavin Smith  <address@hidden>
+
        * doc/info-stnd.texi (Cursor Commands, Scrolling Commands)
        (Node Commands, Selecting Xrefs, Miscellaneous):
        Remove documentation of --vi-keys key bindings, except for

Modified: trunk/doc/info-stnd.texi
===================================================================
--- trunk/doc/info-stnd.texi    2017-02-19 13:03:57 UTC (rev 7674)
+++ trunk/doc/info-stnd.texi    2017-02-19 13:16:17 UTC (rev 7675)
@@ -2429,8 +2429,8 @@
 ZZ      quit
 
 #echo-area
-\mh     echo-area-forward
-\ml     echo-area-backward
+\mh     echo-area-backward
+\ml     echo-area-forward
 \m0     echo-area-beg-of-line
 \m$     echo-area-end-of-line
 \mw     echo-area-forward-word

Modified: trunk/info/infomap.c
===================================================================
--- trunk/info/infomap.c        2017-02-19 13:03:57 UTC (rev 7674)
+++ trunk/info/infomap.c        2017-02-19 13:16:17 UTC (rev 7675)
@@ -518,8 +518,8 @@
   KEYMAP_META('b'), NUL,                 A_ea_backward_word,
   KEYMAP_META('d'), NUL,                 A_ea_kill_word,
   KEYMAP_META('f'), NUL,                 A_ea_forward_word,
-  KEYMAP_META('h'), NUL,                 A_ea_forward,
-  KEYMAP_META('l'), NUL,                 A_ea_backward,
+  KEYMAP_META('h'), NUL,                 A_ea_backward,
+  KEYMAP_META('l'), NUL,                 A_ea_forward,
   KEYMAP_META('w'), NUL,                 A_ea_forward_word,
   KEYMAP_META('x'), NUL,                 A_ea_delete,
   KEYMAP_META('X'), NUL,                 A_ea_kill_word,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]