summary refs log tree commit diff stats
path: root/tests/generics/t2tables.nim
Commit message (Collapse)AuthorAgeFilesLines
* make run the default action of a test in testerArne Döring2018-11-231-1/+3
|
* fixes #3669Andreas Rumpf2016-03-011-0/+13
59f960d2999e'>694d8485 ^
af21f7d1 ^
694d8485 ^
af21f7d1 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20








                          




                               

                    
                                               
    
                                           
  
#!/usr/bin/env zsh
# Open a specific example.

if [ $# -eq 0 ]
then
  echo "edit <file>"
  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