diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-25 21:46:12 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-25 21:46:12 +0000 |
commit | 7fcab2a02c63220dfee6fc834c435414e0e41b75 (patch) | |
tree | 27b9aaa2d959de77961b67874d4e1dc451c1a1dc /nsis | |
parent | 76b92b2830841fd4e05006cc3cad1d8f0bc8101b (diff) | |
download | vim-git-7fcab2a02c63220dfee6fc834c435414e0e41b75.tar.gz |
updated for version 7.0b01
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 8698f93f8..0b38cb378 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -116,7 +116,7 @@ Function .onInit # $2 - holds the names to create batch files for StrCpy $0 "$INSTDIR\vim${VER_MAJOR}${VER_MINOR}" StrCpy $1 "-register-OLE" - StrCpy $2 "gvim evim gview gvimdiff" + StrCpy $2 "gvim evim gview gvimdiff vimtutor" FunctionEnd @@ -214,6 +214,9 @@ Section "Vim executables and runtime files" SetOutPath $0\plugin File ${VIMRT}\plugin\*.* + SetOutPath $0\autoload + File ${VIMRT}\autoload\*.* + SetOutPath $0\syntax File ${VIMRT}\syntax\*.* |