zsh: create function to add project to emacs
Alan Pearce alan@alanpearce.eu
Sat, 04 Jul 2020 15:06:57 +0200
1 files changed, 5 insertions(+), 0 deletions(-)
jump to
M user/zsh/zshrc → user/zsh/zshrc
@@ -125,3 +125,8 @@ bindkey '\ej' anyframe-widget-cd-ghq-repository bindkey '^x^k' anyframe-widget-kill unsetopt flow_control # Let me use ^S and ^Q + +add_project () { + project=${1:-$PWD} + emacsclient -e "(projectile-add-known-project \"${project}\")" +}