changeset 34142:8493cc47ae5b v9.1.0032

patch 9.1.0032: MS-Windows installer misses keymaps Commit: https://github.com/vim/vim/commit/1a9aba8ad49ef77e69f429093d44888e7eafde7c Author: Ken Takata <kentkt@csc.jp> Date: Tue Jan 16 17:14:29 2024 +0100 patch 9.1.0032: MS-Windows installer misses keymaps Problem: MS-Windows installer misses keymaps (Maxim Kim) Solution: Include keymaps in the installer archive (Ken Takata) fixes: vim/vim-win32-installer#331 closes: #13871 Signed-off-by: Ken Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 16 Jan 2024 17:30:05 +0100
parents 85eeeb114e43
children 095baafb4fb8
files nsis/gvim.nsi src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -397,6 +397,9 @@ Section "$(str_section_exe)" id_section_
 	SetOutPath $0\indent
 	File ${VIMRT}\indent\*.*
 
+	SetOutPath $0\keymap
+	File ${VIMRT}\keymap\*.*
+
 	SetOutPath $0\macros
 	File /r ${VIMRT}\macros\*.*
 
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    32,
+/**/
     31,
 /**/
     30,