zsh: Add function to open project from PWD or arg
Alan Pearce alan@alanpearce.uk
Wed, 28 Sep 2016 17:02:43 +0200
1 files changed, 7 insertions(+), 0 deletions(-)
jump to
M tag-zsh/config/zsh/zshrc → tag-zsh/config/zsh/zshrc
@@ -24,6 +24,13 @@ fi export EDITOR=emacsclient alias ec=emacsclient +alias open-project=projectile +_emacs_function () { + emacsclient -e "($1 \"$2\")" > /dev/null +} +projectile () { + _emacs_function projectile-switch-project-by-name ${1:-$PWD} +} ls='\ls' gnu_ls_options="-v --group-directories-first --color=auto"