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
Have you through about adding project information using the Emacs Projectile package?
I noticed when using the Emacs plugin my projects were all set to "Other". Some further digging showed that the --project option was not specified.
Currently, I have redefined the wakatime-client-command function in my Emacs configuration file. I believe this is a working proof of concept. What is needed is adding logic to keep the current logic if Projectile is not found. I did not do this as I know I have projectile installed.
My current logic is to get the projectile-project-name, if it is - then there is no project otherwise there is a project with the name given. There might be a need for more validation, for example it is possible to have two projects on the file system both of which have the same name (but different directories). Also, I am unsure if projectile-project-name is - for all projects on all versions of projectile. I discovered the - return using eshell in different directories.
Have you through about adding project information using the Emacs Projectile package?
I noticed when using the Emacs plugin my projects were all set to "Other". Some further digging showed that the
--project
option was not specified.Currently, I have redefined the
wakatime-client-command
function in my Emacs configuration file. I believe this is a working proof of concept. What is needed is adding logic to keep the current logic if Projectile is not found. I did not do this as I know I have projectile installed.My current logic is to get the projectile-project-name, if it is
-
then there is no project otherwise there is a project with the name given. There might be a need for more validation, for example it is possible to have two projects on the file system both of which have the same name (but different directories). Also, I am unsure if projectile-project-name is-
for all projects on all versions of projectile. I discovered the-
return using eshell in different directories.I hope this helps improve the plugin.
The text was updated successfully, but these errors were encountered: