# HG changeset patch # User Christian Brabandt # Date 1525980607 -7200 # Node ID 0ddb61a7404f9b005dc26f091431691c46f805dd # Parent 3adf931fd7c24ddbf6b674354c5d1aa8f7467219 patch 8.0.1813: Windows installer doesn't install terminal debugger commit https://github.com/vim/vim/commit/38623c8512ae3d1bd9556a7b99fc6f7b3a9b1cda Author: Bram Moolenaar Date: Thu May 10 21:24:35 2018 +0200 patch 8.0.1813: Windows installer doesn't install terminal debugger Problem: Windows installer doesn't install terminal debugger. Solution: Add the package to the list of files to install. diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -267,6 +267,9 @@ Section "Vim executables and runtime fil SetOutPath $0\pack\dist\opt\swapmouse\plugin File ${VIMRT}\pack\dist\opt\swapmouse\plugin\*.* + SetOutPath $0\pack\dist\opt\termdebug\plugin + File ${VIMRT}\pack\dist\opt\termdebug\plugin\*.* + SetOutPath $0\plugin File ${VIMRT}\plugin\*.* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1813, +/**/ 1812, /**/ 1811,