- Single quote after an alphanumeric character is an apostrophe.

- First attempt to behave nicely with an unbalanced quote.
This commit is contained in:
Israel Chauca Fuentes
2010-03-23 01:59:40 -05:00
parent d3348192b8
commit 4e63e5fe10
3 changed files with 30 additions and 2 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
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'