emacs-diffs
[Top][All Lists]
Advanced

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

master eae31b0: * lisp/bindings.el (narrow-map): Bind C-x n g to goto-li


From: Juri Linkov
Subject: master eae31b0: * lisp/bindings.el (narrow-map): Bind C-x n g to goto-line-relative (bug#9917)
Date: Thu, 29 Oct 2020 05:18:52 -0400 (EDT)

branch: master
commit eae31b01a26f1a31a58f23c72549f4edfb949272
Author: Juri Linkov <juri@linkov.net>
Commit: Juri Linkov <juri@linkov.net>

    * lisp/bindings.el (narrow-map): Bind C-x n g to goto-line-relative 
(bug#9917)
---
 etc/NEWS         | 1 +
 lisp/bindings.el | 1 +
 2 files changed, 2 insertions(+)

diff --git a/etc/NEWS b/etc/NEWS
index 5e15948..4b1272d 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -201,6 +201,7 @@ It moves point to the line relative to the accessible 
portion of the
 narrowed buffer.  'M-g M-g' in Info is rebound to this command.
 When 'widen-automatically' is non-nil, 'goto-line' widens the narrowed
 buffer to be able to move point to the inaccessible portion.
+'goto-line-relative' is bound to 'C-x n g'.
 
 +++
 ** When 'suggest-key-bindings' is non-nil, the completion list of 'M-x'
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 3930f5b..250234e 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -918,6 +918,7 @@ if `inhibit-field-text-motion' is non-nil."
 
 (define-key narrow-map "n" 'narrow-to-region)
 (define-key narrow-map "w" 'widen)
+(define-key narrow-map "g" 'goto-line-relative)
 
 ;; Quitting
 (define-key global-map "\e\e\e" 'keyboard-escape-quit)



reply via email to

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