1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-26 19:18:50 +00:00

* lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column.

This commit is contained in:
Chong Yidong 2012-09-30 16:35:11 +08:00
parent c4c0c2dff6
commit d39d3c8e5f
3 changed files with 12 additions and 5 deletions

View File

@ -184,6 +184,15 @@ The PCL-CVS commands are still available via the keyboard.
* 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.

View 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>

View 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.")