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:
parent
f5f6c0e0a7
commit
a7e26d8b89
@ -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.
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user