summary refs log tree commit diff stats
path: root/TODO
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-06-09 13:07:16 +0200
committerhut <hut@lavabit.com>2010-06-09 13:07:16 +0200
commit57deeb86a73e527e7de3881cd5aa1488629695cf (patch)
tree87d1131e58a1b4aab4ae28334108dba8284ee18a /TODO
parentf66cc63de49c69713631bc5f505992958e5ef5e8 (diff)
downloadranger-57deeb86a73e527e7de3881cd5aa1488629695cf.tar.gz
Reverted hashbang for ranger.py.
It causes an error here:
/usr/bin/env: python -O: No such file or directory
Diffstat (limited to 'TODO')
0 files changed, 0 insertions, 0 deletions
he previous revision' href='/akkartik/mu/blame/edit?h=main&id=1b050736eea04323e09e5e8e7499c33cee1899d0'>^
af21f7d1 ^
113bae73 ^
af21f7d1 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
                  
                                                               


               



                                                                                         


        

                           
                                   
    
                                   
  
#!/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