1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

* bindings.el (function-key-map): Add a S-tab => backtab fallback.

This commit is contained in:
Stefan Monnier 2010-08-02 02:13:02 +02:00
parent f5f6c0e0a7
commit a7e26d8b89
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
* bindings.el (function-key-map): Add a S-tab => backtab fallback.
2010-08-01 Juanma Barranquero <lekktu@gmail.com>
* dabbrev.el (dabbrev-completion): Fix typo in docstring.

View File

@ -1035,6 +1035,9 @@ or \\[semantic-mode]")))))
;; so we can't distinguish those two keys, but usually we consider C-SPC
;; (rather than C-@) as the "canonical" binding.
(define-key function-key-map [?\C-@] [?\C-\s])
;; Many keyboards don't have a `backtab' key, so by convention the user
;; can use S-tab instead to access that binding.
(define-key function-key-map [S-tab] [backtab])
(define-key global-map [mouse-movement] 'ignore)