diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-09-06 21:43:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-09-06 21:43:10 +0200 |
commit | c35e4cb4fe3ce524d15ac9fdc9a8aa923761bdfd (patch) | |
tree | 14903bce52f929d66d74c2d5333a01c2d2b00bf2 /nsis | |
parent | 1b9f9d315f137cc883c7aecd39f3df329b7f9085 (diff) | |
download | vim-git-c35e4cb4fe3ce524d15ac9fdc9a8aa923761bdfd.tar.gz |
patch 8.0.1065: not all macro examples are includedv8.0.1065
Problem: Not all macro examples are included in the self-installing
executable. (lkintact)
Solution: Add the directories to the NSIS script. (closes #2065)
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index b42439272..8bfe5e6c8 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -219,6 +219,14 @@ Section "Vim executables and runtime files" SetOutPath $0\macros File ${VIMRT}\macros\*.* + SetOutPath $0\macros\hanoi + File ${VIMRT}\macros\hanoi\*.* + SetOutPath $0\macros\life + File ${VIMRT}\macros\life\*.* + SetOutPath $0\macros\maze + File ${VIMRT}\macros\maze\*.* + SetOutPath $0\macros\urm + File ${VIMRT}\macros\urm\*.* SetOutPath $0\pack\dist\opt\dvorak\dvorak File ${VIMRT}\pack\dist\opt\dvorak\dvorak\*.* |