diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-04 08:59:14 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-04 09:12:10 +0200 |
commit | c6b1f8daa74b2a7061ba8a378c92bdab870c25f4 (patch) | |
tree | 62c65db2c71e1211c605ea3583f2d6650a3ed13d /lisp/term.el | |
parent | ca7e76c6f98cb09a686bcda7890ca10fd374fb4f (diff) | |
download | emacs-c6b1f8daa74b2a7061ba8a378c92bdab870c25f4.tar.gz emacs-c6b1f8daa74b2a7061ba8a378c92bdab870c25f4.tar.bz2 emacs-c6b1f8daa74b2a7061ba8a378c92bdab870c25f4.zip |
Make `M-x term' offer completion
* lisp/term.el (term): Have completion in the prompt (bug#21296).
Diffstat (limited to 'lisp/term.el')
-rw-r--r-- | lisp/term.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/term.el b/lisp/term.el index b3870a814d2..0bcd095283a 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -1429,10 +1429,10 @@ The buffer is in Term mode; see `term-mode' for the commands to use in that buffer. \\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer." - (interactive (list (read-from-minibuffer "Run program: " - (or explicit-shell-file-name - (getenv "ESHELL") - shell-file-name)))) + (interactive (list (read-shell-command "Run program: " + (or explicit-shell-file-name + (getenv "ESHELL") + shell-file-name)))) (set-buffer (make-term "terminal" program)) (term-mode) (term-char-mode) |