]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column.
authorChong Yidong <cyd@gnu.org>
Sun, 30 Sep 2012 08:35:11 +0000 (16:35 +0800)
committerChong Yidong <cyd@gnu.org>
Sun, 30 Sep 2012 08:35:11 +0000 (16:35 +0800)
etc/NEWS
lisp/ChangeLog
lisp/bindings.el

index b2444edcafeb7c718749044430dffe7012557c84..d95c707ba36561f29554822f794df1d584c85c4e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -184,6 +184,15 @@ The PCL-CVS commands are still available via the keyboard.
 \f
 * 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 @@ append-to-register and M-x prepend-to-register.
 
 ** `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.
 
index 4b1ba1e660614a6327f8d04fc70ff8e859c5f0e1..f9a81c2b7cbb1a979f30658acd4b9e04222db8a9 100644 (file)
@@ -1,5 +1,7 @@
 2012-09-30  Chong Yidong  <cyd@gnu.org>
 
+       * 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  <monnier@iro.umontreal.ca>
index 7ca1bf4719f6b3ca8a977a65332a938c3fbf7ec0..b4f9d29fe52cc4bb821e66764cccbc8793e9ad91 100644 (file)
@@ -898,6 +898,7 @@ if `inhibit-field-text-motion' is non-nil."
 (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.")