Skip to content

Commit

Permalink
gnux: fix which-key prefix bug
Browse files Browse the repository at this point in the history
The third argument to `spacemacs/declare-prefix` is never used.
It was ignored before but currently causes issues.
  • Loading branch information
lebensterben authored Jan 17, 2022
1 parent ca93e28 commit 6ccbbcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layers/+email/gnus/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
:commands gnus
:init
(progn
(spacemacs/declare-prefix "aeg" "gnus" "Gnus newsreader")
(spacemacs/declare-prefix "aeg" "gnus")
(spacemacs/set-leader-keys
"aegg" 'gnus
"aegs" 'gnus-slave
Expand Down

2 comments on commit 6ccbbcc

@lebensterben
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tommyjiang @winsphinx
This commit should fix this error.

@tommyjiang
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tommyjiang @winsphinx This commit should fix this error.

Thanks for the quick fix.

Please sign in to comment.