¶News
- Embark blog post by Karthik / karthink: https://karthinks.com/software/fifteen-ways-to-use-embark/
- Emacs + i3 blog post by Pavel / sqrtminusone: https://sqrtminusone.xyz/posts/2021-10-04-emacs-i3/
¶Comparing Project.el to Projectile
project.el is a built-in Emacs package, added somewhere around 26, which provides basic actions for managing code projects similar to Projectile.
Even though it is built in, you can install newer versions from GNU ELPA!
¶Features to look at
Which Projectile features should we try to find equivalents for in Project.el?
projectile-find-fileprojectile-switch-projectprojectile-switch-to-bufferprojectile-kill-buffers->project-kill-buffersprojectile-run-shell/eshell->project-shell/eshellprojectile-compile-project->project-compileprojectile-vc->project-vc-dirprojectile-commander->project-switch-commands?projectile-replace(-regexp)->project-query-replace-regexpprojectile-switch-project-actionprojectile-{grep,rg,ag}->project-find-regexpprojectile-run-(async-)shell-command-in-root->project-(async-)shell-commandprojectile-register-project-type-> ?
C-x p keymap is only available in Emacs 28 (or project.el 0.8.0)
¶Extending project.el
- Add more ways to detect project folders: https://michael.stapelberg.ch/posts/2021-04-02-emacs-project-override/
- Add another way to list project files: https://www.manueluberti.eu/emacs/2020/11/14/extending-project/
- karthik’s
project-xhttps://github.com/karthink/project-x
