I am testing to use Vimball to package a plugin and when trying the
RmVimball command, the installed plugin files are not removed.
Looking through the .VimballRecord file, the delete() entries added
extra backslash (\) to the folder names, thus making the delete()
command to not delete the file.
eg.
Original entry:
xpt.vba: call delete('C:\Documents\ and\ Settings\kfleong\vimfiles/doc/
xpt-function.txt') ....
Changed entry and the RmVimball works:
xpt.vba: call delete('C:\Documents and Settings\kfleong\vimfiles/doc/
xpt-function.txt') ....
Using Vimball plugin ver 30j Jun 04, 2009 and gVim 7.2.264 under
Windows XP (win32).
KF
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---