texinfo-commits
[Top][All Lists]
Advanced

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

[7785] --vi-keys fixes


From: gavinsmith0123
Subject: [7785] --vi-keys fixes
Date: Sun, 14 May 2017 15:16:12 -0400 (EDT)

Revision: 7785
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7785
Author:   gavin
Date:     2017-05-14 15:16:12 -0400 (Sun, 14 May 2017)
Log Message:
-----------
--vi-keys fixes

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2017-05-14 14:56:51 UTC (rev 7784)
+++ trunk/ChangeLog     2017-05-14 19:16:12 UTC (rev 7785)
@@ -1,3 +1,13 @@
+2017-05-14  Gavin Smith  <address@hidden>
+
+       * doc/info-stnd.texi (infokey format): Add missing documentation 
+       for 'C-x p' for 'prev-node' under --vi-keys.  Correct bindings
+       of 'g' and 'G' to 'first-node' and 'last-node' respectively.
+       * info/infomap.c (default_vi_like_info_keys): Re-add 'C-x n' for
+       'next-node' (removed accidentally on 2014-06-10).
+
+       Reports from Benno Schulenberg.
+
 2017-05-13  Gavin Smith  <address@hidden>
 
        * doc/texinfo.tex (\xrdef): Place a \gdef using a \csname

Modified: trunk/doc/info-stnd.texi
===================================================================
--- trunk/doc/info-stnd.texi    2017-05-14 14:56:51 UTC (rev 7784)
+++ trunk/doc/info-stnd.texi    2017-05-14 19:16:12 UTC (rev 7785)
@@ -2380,8 +2380,8 @@
 
 @example
 #info
-g       beginning-of-node
-G       end-of-node
+g       first-node
+G       last-node
 \mb     beginning-of-node
 \me     end-of-node
 j       next-line
@@ -2410,6 +2410,7 @@
 ^u      scroll-half-screen-up
 
 ^xn     next-node
+^xp     prev-node
 ^xu     up-node
 '       last-node
 \mt     top-node

Modified: trunk/info/infomap.c
===================================================================
--- trunk/info/infomap.c        2017-05-14 14:56:51 UTC (rev 7784)
+++ trunk/info/infomap.c        2017-05-14 19:16:12 UTC (rev 7785)
@@ -460,6 +460,7 @@
   CONTROL('x'), 'g', NUL,         A_info_goto_node,
   CONTROL('x'), 'i', NUL,         A_info_index_search,
   CONTROL('x'), 'I', NUL,         A_info_goto_invocation_node,
+  CONTROL('x'), 'n', NUL,         A_info_next_node,
   CONTROL('x'), 'o', NUL,         A_info_next_window,
   CONTROL('x'), 'O', NUL,         A_info_goto_invocation_node,
   CONTROL('x'), 'p', NUL,         A_info_prev_node,




reply via email to

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