refactor(lib): deprecate pushnew!

In the spirit of 6f40ad5, I'm deprecating this macro because it doesn't
provide enough value to exist and serves only to complicate a casual
reader's understanding of Doom's modules.

Ref: 6f40ad55f5
This commit is contained in:
Henrik Lissner 2026-03-01 18:07:25 -05:00
parent 2c42e47a30
commit 10d0b60f5d
No known key found for this signature in database
GPG key ID: B60957CA074D39A3
22 changed files with 141 additions and 133 deletions

View file

@ -7,7 +7,9 @@
"Command to initialize the jupyter REPL for `+python/open-jupyter-repl'.")
(after! projectile
(pushnew! projectile-project-root-files "pyproject.toml" "requirements.txt" "setup.py"))
(add-to-list 'projectile-project-root-files "setup.py")
(add-to-list 'projectile-project-root-files "requirements.txt")
(add-to-list 'projectile-project-root-files "pyproject.toml"))
;;