mirror of
https://github.com/ernstwi/vim-secret.git
synced 2026-02-03 19:48:44 +08:00
Initial commit
This commit is contained in:
commit
9d395d316f
8 changed files with 790 additions and 0 deletions
20
makefile
Normal file
20
makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
VIM = vim -N -u NORC -i NONE --cmd 'set rtp=test/vim-vader packpath='
|
||||
|
||||
all: v nv
|
||||
|
||||
v: test/vim-vader
|
||||
$(VIM) -c 'Vader! test/*.vader'
|
||||
|
||||
v-i: test/vim-vader
|
||||
$(VIM) -c 'Vader test/*.vader'
|
||||
|
||||
nv: test/vim-vader
|
||||
n$(VIM) --headless -c 'Vader! test/*.vader'
|
||||
|
||||
nv-i: test/vim-vader
|
||||
n$(VIM) -c 'Vader test/*.vader'
|
||||
|
||||
test/vim-vader:
|
||||
git clone https://github.com/junegunn/vader.vim test/vim-vader || ( cd test/vim-vader && git pull --rebase )
|
||||
|
||||
.PHONY: all v v-i nv nv-i
|
||||
Loading…
Add table
Add a link
Reference in a new issue