File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1+ language : vim
2+
3+ install :
4+ - git clone https://github.com/vim/vim /tmp/vim
5+ - mkdir ~/bin
6+ - cd /tmp/vim
7+ - sudo apt-get install -y gettext libncurses5-dev libacl1-dev libgpm-dev
8+ - ./configure --with-features=huge --enable-fail-if-missing --enable-pythoninterp --prefix=$HOME/bin/vim
9+ - make && make install
10+ - git clone https://github.com/junegunn/vader.vim.git
11+ - export VIM_EXE=$HOME/bin/vim/bin/vim
12+
13+ before_script :
14+ - $HOME/bin/vim/bin/vim --version
15+
16+ script :
17+ - cd test
18+ - ./run.sh > /dev/null && echo Success || echo Fail
19+ - cd ..
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if [ $# -eq 0 ]; then
99 exit
1010fi
1111
12- VIM_EXE= " vim"
12+ : " ${ VIM_EXE:= vim} "
1313
1414if hash nvim 2> /dev/null ; then
1515 VIM_EXE=" nvim"
Original file line number Diff line number Diff line change 33# ##############################################################################
44# Execute all test case #
55# ##############################################################################
6-
7- VIM_EXE=" vim"
6+ : " ${VIM_EXE:= vim} "
87
98# If nvim is available in PATH, then we prefer to use nvim
109# since it works better with nodemon
You can’t perform that action at this time.
0 commit comments