diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/guix-pcomplete.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs/guix-pcomplete.el b/emacs/guix-pcomplete.el index dd42556163..cad19662dd 100644 --- a/emacs/guix-pcomplete.el +++ b/emacs/guix-pcomplete.el @@ -330,7 +330,11 @@ INPUT is the current partially completed string." ((and (command? "refresh") (option? "-s" "--select")) - (complete* guix-pcomplete-refresh-subsets))))) + (complete* guix-pcomplete-refresh-subsets)) + + ((and (command? "size") + (option? "-m" "--map-file")) + (complete* (pcomplete-entries)))))) (defun guix-pcomplete-complete-options (command) "Complete options (with their arguments) for guix COMMAND." |