about summary refs log blame commit diff stats
path: root/edit
blob: 400ab370fd00adc2c937d261ffdc3443c8f9652a (plain) (tree)
1
2
3
4
5
6
7
8
9
                  
                                                               


               



                                                                                         


        

                           
                                   
    
                                   
  
#!/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
  $EDITOR -S vimrc.vim apps/$1.subx
else
  $EDITOR              apps/$1.subx
fi