diff options
author | Alex Kost <alezost@gmail.com> | 2015-10-15 21:09:33 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-10-16 17:14:57 +0300 |
commit | e0c5309a8363b218452a225cdb51e4f681bf4628 (patch) | |
tree | 5981a63e105b842f17456f20b110c0ed4bb7e5d7 | |
parent | b1b53df382deaeb849241f44581421704245483d (diff) | |
download | guix-e0c5309a8363b218452a225cdb51e4f681bf4628.tar guix-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').
-rw-r--r-- | emacs/guix-command.el | 3 |
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))) |