]> git.donarmstrong.com Git - bin.git/blob - emacs_r
add mutt alias which executes neomutt if that exists
[bin.git] / emacs_r
1 #!/bin/sh
2
3 if [ "x$(basename $0)" = "xemacs_r" ]; then
4     exec emacs --eval '(setq server-name "R")' --eval '(server-start)' "$@";
5 elif [ "x$(basename $0)" = "xemacsclient_r" ]; then
6     exec emacsclient -s R "$@";
7 else
8     echo "No clue what to do '$0'";
9 fi;