Change Emacs shell's CWD with helm projectile

from blog lmno.lol @alvaro, | ↗ original
If using Emacs shell and helm projectile, you can wire these up to quickly change your current working directory. (require 'helm-projectile) (defun ar/shell-cd (dir-path) "Like shell-pop--cd-to-cwd-shell, but without recentering." (unless (string-equal mode-name "Shell") (error "Not in Shell mode")) (message mode-name) (goto-char...