blob: dc434f587c87d225f48559d015c1a51035ae70b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env zsh
# Helper to more conveniently open commonly-used SubX programs.
if [ $# -eq 0 ]
then
echo "Usage: $0 <file root without subdirectory or .subx extension>"
echo
echo "Naming convention: Files starting with 'ex' will be assumed to live in examples/"
echo "Other files will be assumed to live in apps/"
exit 1
fi
if [[ $EDITOR == *'vim'* ]]
then
LOCAL_SETTINGS='-S vimrc.vim'
fi
if [[ $1 == 'ex'* ]]
then
eval $EDITOR $LOCAL_SETTINGS examples/$1.subx
else
eval $EDITOR $LOCAL_SETTINGS apps/$1.subx
fi
|