You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to Emacs and I'm trying to configure Wakatime in my init.el file.
I've followed the tutorial and installed both wakatime-cli and wakatime-mode, but I'm currently getting this error at Emacs buffer when starting Emacs:
Symbol's function definition is void: wakatime-api-key
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the ‘--debug-init’ option to view a complete error backtrace.
The first argument in an s-expression (...) should be a callable there in so (wakatime-api-key "70b484c2-74d0-4ab0-9510-cd425f08f7e3") means that you are trying to call the function wakatime-api-key with the argument 70.....
What you want to do is set the varibles instead (setq wakatime-api-key "70b484c2-74d0-4ab0-9510-cd425f08f7e3")
I'm new to Emacs and I'm trying to configure
Wakatime
in myinit.el
file.I've followed the tutorial and installed both
wakatime-cli
andwakatime-mode
, but I'm currently getting this error at Emacs buffer when starting Emacs:Here's my
init.el
file:The text was updated successfully, but these errors were encountered: