-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module variables not getting set #252
Comments
@yusi1 Most likely the issue is that you are not referring to the write symbol, try using the qualified symbol name by using :, ej. |
So I tried doing:
But StumpWM says the symbol is not in the package? Very weird, because it is. |
But I tried in the REPL: |
So I tried to actually set the variable through the REPL but StumpWM says: |
Ok, so I've managed to fix my problem, instead of using a single colon, I used two colons before the variable since it is an unexported variable, now |
I opened this pull request to change this in the README for the module so that no one else comes across this problem: #253 |
I have a module called
productivity
and it needs some variables to be set that are defined in the source for the module withdefvar
, but when I go into the StumpWM REPLC-w :
in my setup, StumpWM says the variable is undefined, even though I loaded the module in? Also that means I can't set the variable to something because it doesn't exist in the first place, shouldn't the variables defined in the module source get loaded in when I load the module in, in my init file?For some reason I have to go into the source code for the module and directly change the variables there, but changing them in the init file doesn't work, it is very weird.
Maybe it is something wrong with my system, idk.
The text was updated successfully, but these errors were encountered: