emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110274: * lisp/bindings.el (goto-map


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110274: * lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column.
Date: Sun, 30 Sep 2012 16:35:11 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110274
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sun 2012-09-30 16:35:11 +0800
message:
  * lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/bindings.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-09-29 23:52:03 +0000
+++ b/etc/NEWS  2012-09-30 08:35:11 +0000
@@ -184,6 +184,15 @@
 
 * Editing Changes in Emacs 24.3
 
+** Navigation command changes
+
+*** New binding `M-g c' for `goto-char'.
+
+*** New binding `M-g TAB' for `move-to-column'.
+
+*** `M-g TAB' (`move-to-column') prompts for a column number if called
+interactively with no prefix arg.  Previously, it moved to column 1.
+
 +++
 ** `C-x 8 RET' is now bound to `insert-char', which is now a command.
 `ucs-insert' is now an obsolete alias for `insert-char'.
@@ -226,11 +235,6 @@
 
 ** `C-u M-=' now counts lines/words/characters in the entire buffer.
 
-** New binding `M-g c' for `goto-char'.
-
-** M-x move-to-column, if called interactively with no prefix arg, now
-prompts for a column number.
-
 ** New command `C-x r M-w' (copy-rectangle-as-kill).
 It copies the region-rectangle as the last rectangle kill.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-09-30 08:24:56 +0000
+++ b/lisp/ChangeLog    2012-09-30 08:35:11 +0000
@@ -1,5 +1,7 @@
 2012-09-30  Chong Yidong  <address@hidden>
 
+       * bindings.el (goto-map): Bind M-g TAB to move-to-column.
+
        * help-fns.el (help-fns--obsolete): Fix last change.
 
 2012-09-30  Stefan Monnier  <address@hidden>

=== modified file 'lisp/bindings.el'
--- a/lisp/bindings.el  2012-09-23 10:21:34 +0000
+++ b/lisp/bindings.el  2012-09-30 08:35:11 +0000
@@ -898,6 +898,7 @@
 (define-key goto-map "\M-n" 'next-error)
 (define-key goto-map    "p" 'previous-error)
 (define-key goto-map "\M-p" 'previous-error)
+(define-key goto-map   "\t" 'move-to-column)
 
 (defvar search-map (make-sparse-keymap)
   "Keymap for search related commands.")


reply via email to

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