diff options
| author | Chong Yidong | 2012-09-30 16:35:11 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-09-30 16:35:11 +0800 |
| commit | d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b (patch) | |
| tree | 8efcc263bd42786704a853167421757ef25e9e19 | |
| parent | c4c0c2dff6a733c411119418de41e2fb3a72b262 (diff) | |
| download | emacs-d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b.tar.gz emacs-d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b.zip | |
* lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column.
| -rw-r--r-- | etc/NEWS | 14 | ||||
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/bindings.el | 1 |
3 files changed, 12 insertions, 5 deletions
| @@ -184,6 +184,15 @@ The PCL-CVS commands are still available via the keyboard. | |||
| 184 | 184 | ||
| 185 | * Editing Changes in Emacs 24.3 | 185 | * Editing Changes in Emacs 24.3 |
| 186 | 186 | ||
| 187 | ** Navigation command changes | ||
| 188 | |||
| 189 | *** New binding `M-g c' for `goto-char'. | ||
| 190 | |||
| 191 | *** New binding `M-g TAB' for `move-to-column'. | ||
| 192 | |||
| 193 | *** `M-g TAB' (`move-to-column') prompts for a column number if called | ||
| 194 | interactively with no prefix arg. Previously, it moved to column 1. | ||
| 195 | |||
| 187 | +++ | 196 | +++ |
| 188 | ** `C-x 8 RET' is now bound to `insert-char', which is now a command. | 197 | ** `C-x 8 RET' is now bound to `insert-char', which is now a command. |
| 189 | `ucs-insert' is now an obsolete alias for `insert-char'. | 198 | `ucs-insert' is now an obsolete alias for `insert-char'. |
| @@ -226,11 +235,6 @@ append-to-register and M-x prepend-to-register. | |||
| 226 | 235 | ||
| 227 | ** `C-u M-=' now counts lines/words/characters in the entire buffer. | 236 | ** `C-u M-=' now counts lines/words/characters in the entire buffer. |
| 228 | 237 | ||
| 229 | ** New binding `M-g c' for `goto-char'. | ||
| 230 | |||
| 231 | ** M-x move-to-column, if called interactively with no prefix arg, now | ||
| 232 | prompts for a column number. | ||
| 233 | |||
| 234 | ** New command `C-x r M-w' (copy-rectangle-as-kill). | 238 | ** New command `C-x r M-w' (copy-rectangle-as-kill). |
| 235 | It copies the region-rectangle as the last rectangle kill. | 239 | It copies the region-rectangle as the last rectangle kill. |
| 236 | 240 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b1ba1e6606..f9a81c2b7cb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-09-30 Chong Yidong <cyd@gnu.org> | 1 | 2012-09-30 Chong Yidong <cyd@gnu.org> |
| 2 | 2 | ||
| 3 | * bindings.el (goto-map): Bind M-g TAB to move-to-column. | ||
| 4 | |||
| 3 | * help-fns.el (help-fns--obsolete): Fix last change. | 5 | * help-fns.el (help-fns--obsolete): Fix last change. |
| 4 | 6 | ||
| 5 | 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca> |
diff --git a/lisp/bindings.el b/lisp/bindings.el index 7ca1bf4719f..b4f9d29fe52 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -898,6 +898,7 @@ if `inhibit-field-text-motion' is non-nil." | |||
| 898 | (define-key goto-map "\M-n" 'next-error) | 898 | (define-key goto-map "\M-n" 'next-error) |
| 899 | (define-key goto-map "p" 'previous-error) | 899 | (define-key goto-map "p" 'previous-error) |
| 900 | (define-key goto-map "\M-p" 'previous-error) | 900 | (define-key goto-map "\M-p" 'previous-error) |
| 901 | (define-key goto-map "\t" 'move-to-column) | ||
| 901 | 902 | ||
| 902 | (defvar search-map (make-sparse-keymap) | 903 | (defvar search-map (make-sparse-keymap) |
| 903 | "Keymap for search related commands.") | 904 | "Keymap for search related commands.") |