1
0
mirror of https://github.com/amix/vimrc synced 2025-09-14 15:55:00 +08:00

add supertab plugin and vim-system-copy plugin

This commit is contained in:
李春奕
2016-10-09 14:10:08 +08:00
parent 1458911e03
commit f20982b275
9 changed files with 2093 additions and 0 deletions

View File

@ -0,0 +1,17 @@
SHELL=/bin/bash
all: dist
dist:
@rm supertab.vmb 2> /dev/null || true
@vim -c 'r! git ls-files doc plugin' \
-c '$$,$$d _' -c '%MkVimball supertab .' -c 'q!'
clean:
@rm -R build 2> /dev/null || true
install: supertab.vmb
vim $< -c 'so %' -c 'q'
uninstall:
vim -c 'RmVimball supertab.vmb' -c 'q'