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:
Yusef Aslam 2022-06-25 14:23:03 +01:00 committed by GitHub
parent d0c05077ec
commit 55094c6f0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")))