diff options
author | Drew Vogel <dvogel@github> | 2021-10-24 20:35:07 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-24 20:35:07 +0100 |
commit | e30d10253fa634c4f60daa798d029245f4eed393 (patch) | |
tree | 57aca74b65dc4c3924ef23185b8cb2b6933996c2 /nsis | |
parent | 3c5904d2a5d7861c227a4c3cd4ddcbc51014c838 (diff) | |
download | vim-git-e30d10253fa634c4f60daa798d029245f4eed393.tar.gz |
patch 8.2.3562: cannot add color namesv8.2.3562
Problem: Cannot add color names.
Solution: Add the v:colornames dictionary. (Drew Vogel, closes #8761)
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index fc5713f79..649c6950d 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -357,7 +357,6 @@ Section "$(str_section_exe)" id_section_exe File ..\README.txt File ..\uninstall.txt File ${VIMRT}\*.vim - File ${VIMRT}\rgb.txt File ${VIMTOOLS}\diff.exe File ${VIMTOOLS}\winpty${BIT}.dll @@ -367,6 +366,8 @@ Section "$(str_section_exe)" id_section_exe File ${VIMRT}\colors\*.* SetOutPath $0\colors\tools File ${VIMRT}\colors\tools\*.* + SetOutPath $0\colors\lists + File ${VIMRT}\colors\lists\*.* SetOutPath $0\compiler File ${VIMRT}\compiler\*.* |