branch: externals/system-packages
commit d2884f5e3f9f37f6c9a7d148d2c0f2ffe274b264
Author: Juergen Hoetzel <[email protected]>
Commit: Juergen Hoetzel <[email protected]>
Use idiomatic prompts in interactive commands
---
system-packages.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/system-packages.el b/system-packages.el
index eb80497..977618b 100644
--- a/system-packages.el
+++ b/system-packages.el
@@ -123,19 +123,19 @@
(defun system-packages-install (pack)
"Installs system packages using the package manager named in
system-packages-packagemanager."
- (interactive "sWhat package to install?")
+ (interactive "sWhat package to install: ")
(system-packages--run-command 'install pack))
(defun system-packages-search (pack)
"Search for system packages using the package manager named in
system-packages-packagemanager."
- (interactive "sSearch string?")
+ (interactive "sSearch string: ")
(system-packages--run-command 'search pack))
(defun system-packages-uninstall (pack)
"Uninstalls installed system packages using the package manager named in
system-packages-packagemanager."
- (interactive "sWhat package to uninstall?")
+ (interactive "sWhat package to uninstall: ")
(system-packages--run-command 'uninstall pack))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;