]> git.donarmstrong.com Git - bin.git/blob - sane_editor
use emacs client and deprecate jed and juno in favor of vi
[bin.git] / sane_editor
1 #!/bin/sh
2
3 # Order of preference
4 # gnuclient
5 # jed
6 # juno
7 # vi
8 # nano
9 # ed
10
11 # modify the gsrvdir check to search for directories that are owned by me
12 if [ -x /usr/bin/emacsclient ] && [ -x /usr/bin/emacs ]; then
13     exec emacsclient -c "$@";
14 fi;
15 if [ -x /usr/bin/gnuclient ] && [ -x /usr/bin/emacs ]; then
16     if ( gnuclient -batch < /dev/null >/dev/null); then
17         exec gnuclient "$@";
18     fi;
19 fi;
20 if [ -x /usr/bin/vi ]; then
21     exec vi "$@";
22 fi;
23 if [ -x /usr/bin/nano ]; then 
24     exec nano "$@";
25 fi;
26 if [ -x /usr/bin/ed ]; then
27     exec ed "$@";
28 fi;
29 echo "Unable to find a suitable editor" >/dev/stderr;
30 exit 1;