Skip to content

Commit

Permalink
Fix guide-key breakage
Browse files Browse the repository at this point in the history
1958678 (0.26.0) introduced a customisable variable
`dotspacemacs-leader-key`. Hardcoded instances of the leader were
replaced by references to this variable. An error in this refactoring
has broken guide-key.

This change fixes a bug where the variable name was added to a quoted
list, inserting the symbol and not the variable's value.

After this change, guide-key should display again.
  • Loading branch information
Chris Barrett committed Dec 7, 2014
1 parent 482afcb commit a9e1236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacemacs/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -1120,9 +1120,9 @@ determine the state to enable when escaping from the insert state.")
(guide-key-mode -1)
(guide-key-mode)))
(evil-leader/set-key "tG" 'spacemacs/toggle-guide-key)
(setq guide-key/guide-key-sequence '("C-x"
(setq guide-key/guide-key-sequence `("C-x"
"C-c"
dotspacemacs-leader-key
,dotspacemacs-leader-key
"g"
"z"
"C-h")
Expand Down

0 comments on commit a9e1236

Please sign in to comment.