mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
Use the correct way to set the variable
I don't know much about Common Lisp but without this, `productivity` mode wouldn't pick up the variable that was set in my init file, I found this StackOverflow post that says that two colons should be put before an unexported variable: https://stackoverflow.com/questions/8567155/why-colons-precede-variables-in-common-lisp And my problem was solved.
This commit is contained in:
parent
d0c05077ec
commit
55094c6f0f
|
|
@ -44,7 +44,7 @@ the code.
|
|||
=*top-map*= and their associated commands.
|
||||
ex:
|
||||
#+BEGIN_SRC lisp
|
||||
(setf *productivity-keys*
|
||||
(setf productivity::*productivity-keys*
|
||||
'(("H-t" *root-map*)
|
||||
("C-;" *rat-map*)
|
||||
("Print" "screenshot")))
|
||||
|
|
|
|||
Loading…
Reference in a new issue