mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-06 12:44:27 +08:00
16 lines
384 B
Makefile
16 lines
384 B
Makefile
PLUGIN=delimitMate
|
|
|
|
install:
|
|
cp -f doc/* ~/.vim/doc/${PLUGIN}.txt
|
|
cp -f plugin/* ~/.vim/plugin/${PLUGIN}.vim
|
|
vim -u NONE -c 'helptags ~/.vim/doc' -c 'q'
|
|
|
|
zip:
|
|
zip -r pickacolor.zip doc plugin
|
|
zip pickacolor.zip -d \*.sw\?
|
|
|
|
vimball: install
|
|
echo doc/${PLUGIN}.txt > vimball.txt
|
|
echo plugin/${PLUGIN}.vim >> vimball.txt
|
|
vim -c 'e vimball.txt' -c '%MkVimball! ${PLUGIN}' -c 'q'
|