-
Notifications
You must be signed in to change notification settings - Fork 38
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
Disable tracking mode #38
Comments
I think this is only a problem when using something like Doom which automatically adds the hook to I do this by hooking ; Stop enabling poetry tracking mode
(add-hook 'python-mode-hook (lambda () (poetry-tracking-mode -1))) If anyone has a better way to do this, though, I'd love to hear it. |
Another workaround I found that may be a bit better in some cases is to completely destroy (advice-add 'poetry-tracking-mode :override (lambda () ())) |
(after! python
(remove-hook! 'python-mode-hook 'poetry-tracking-mode)) |
Is there a way to permanent disable tracking mode?
The text was updated successfully, but these errors were encountered: