summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-10-15 21:09:33 +0300
committerAlex Kost <alezost@gmail.com>2015-10-16 17:14:57 +0300
commite0c5309a8363b218452a225cdb51e4f681bf4628 (patch)
tree5981a63e105b842f17456f20b110c0ed4bb7e5d7 /emacs
parentb1b53df382deaeb849241f44581421704245483d (diff)
downloadguix-patches-e0c5309a8363b218452a225cdb51e4f681bf4628.tar
guix-patches-e0c5309a8363b218452a225cdb51e4f681bf4628.tar.gz
emacs: Disambiguate "d" key in 'system' popup.
* emacs/guix-command.el (guix-command-improve-system-argument): Use "D" key for 'disk-image' action (leave "d" for 'dmd-graph').
Diffstat (limited to 'emacs')
-rw-r--r--emacs/guix-command.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/guix-command.el b/emacs/guix-command.el
index b679ad9b1e..3ae779185e 100644
--- a/emacs/guix-command.el
+++ b/emacs/guix-command.el
@@ -249,7 +249,8 @@ to be modified."
(guix-command-define-argument-improver
guix-command-improve-system-argument
- '(("vm-image" :char ?V)
+ '(("disk-image" :char ?D)
+ ("vm-image" :char ?V)
("--on-error" :char ?E)
("--no-grub" :char ?g)
("--full-boot" :char ?b)))