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
b0c24554
Commit
b0c24554
authored
Jul 18, 2006
by
Stefan Monnier
Browse files
(minibuffer-local-map): Rebind TAB so it inserts a \t.
parent
ddb1546b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
lisp/bindings.el
lisp/bindings.el
+5
-1
No files found.
lisp/bindings.el
View file @
b0c24554
...
...
@@ -674,7 +674,11 @@ language you are using."
(
define-key
map
[prior]
'previous-history-element
)
(
define-key
map
[up]
'previous-history-element
)
(
define-key
map
"\es"
'next-matching-history-element
)
(
define-key
map
"\er"
'previous-matching-history-element
))
(
define-key
map
"\er"
'previous-matching-history-element
)
;; Override the global binding (which calls indent-relative via
;; indent-for-tab-command). The alignment that indent-relative tries to
;; do doesn't make much sense here since the prompt messes it up.
(
define-key
map
"\t"
'self-insert-command
))
(
define-key
global-map
"\C-u"
'universal-argument
)
(
let
((
i
?0
))
...
...
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