patch 9.1.0032: MS-Windows installer misses keymaps
Commit:
https://github.com/vim/vim/commit/1a9aba8ad49ef77e69f429093d44888e7eafde7c
Author: Ken Takata <[email protected]>
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 <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi
index adb38a4a1..72252527c 100644
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -397,6 +397,9 @@ Section "$(str_section_exe)" id_section_exe
SetOutPath $0\indent
File ${VIMRT}\indent\*.*
+ SetOutPath $0\keymap
+ File ${VIMRT}\keymap\*.*
+
SetOutPath $0\macros
File /r ${VIMRT}\macros\*.*
diff --git a/src/version.c b/src/version.c
index 4daa6e571..2e32ae1d1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 32,
/**/
31,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1rPmKE-00FIyA-OI%40256bit.org.