Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cd8990c1
Commit
cd8990c1
authored
Jan 26, 2006
by
Richard M. Stallman
Browse files
(advertised-widget-backward): New alias.
(widget-keymap): Use advertised-widget-backward for S-TAB.
parent
02c88f47
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/wid-edit.el
lisp/wid-edit.el
+4
-1
No files found.
lisp/wid-edit.el
View file @
cd8990c1
...
...
@@ -849,12 +849,15 @@ button end points."
;;; Keymap and Commands.
;;;###autoload
(
defalias
'advertised-widget-backward
'widget-backward
)
;;;###autoload
(
defvar
widget-keymap
(
let
((
map
(
make-sparse-keymap
)))
(
define-key
map
"\t"
'widget-forward
)
(
define-key
map
"\e\t"
'widget-backward
)
(
define-key
map
[
(
shift
tab
)
]
'widget-backward
)
(
define-key
map
[
(
shift
tab
)
]
'
advertised-
widget-backward
)
(
define-key
map
[backtab]
'widget-backward
)
(
define-key
map
[down-mouse-2]
'widget-button-click
)
(
define-key
map
"\C-m"
'widget-button-press
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment