runtime(vim): 'iskeyword' setting not correctly restored
Commit:
https://github.com/vim/vim/commit/461dd9aca68e45a437a559296e21066b6ca87be3
Author: Christian Brabandt <[email protected]>
Date: Tue Nov 4 18:13:55 2025 +0000
runtime(vim): 'iskeyword' setting not correctly restored
fixes: https://github.com/vim/vim/issues/18673
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/runtime/syntax/generator/vim.vim.base
b/runtime/syntax/generator/vim.vim.base
index 40139de24..0f7d3ff89 100644
--- a/runtime/syntax/generator/vim.vim.base
+++ b/runtime/syntax/generator/vim.vim.base
@@ -2,7 +2,7 @@
" Language: Vim script
" Maintainer: Hirohito Higashi <h.east.727 ATMARK gmail.com>
" Doug Kearns <[email protected]>
-" Last Change: 2025 Oct 27
+" Last Change: 2025 Nov 04
" Former Maintainer: Charles E. Campbell
" DO NOT CHANGE DIRECTLY.
@@ -1923,10 +1923,10 @@ VimFoldl syn region vimLuaHeredoc contained
" [-- mzscheme --] {{{3
if s:interfaces =~# 'm'
- let s:iskKeep = &isk
+ let s:iskKeep = &l:isk
syn include @vimMzSchemeScript syntax/scheme.vim
unlet b:current_syntax
- let &isk = s:iskKeep
+ let &l:isk = s:iskKeep
endif
syn keyword vimMzScheme mz[scheme] skipwhite
nextgroup=vimMzSchemeHeredoc,vimMzSchemeStatement
diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim
index 4f0a14861..69ca7d153 100644
--- a/runtime/syntax/vim.vim
+++ b/runtime/syntax/vim.vim
@@ -2,7 +2,7 @@
" Language: Vim script
" Maintainer: Hirohito Higashi <h.east.727 ATMARK gmail.com>
" Doug Kearns <[email protected]>
-" Last Change: 2025 Nov 01
+" Last Change: 2025 Nov 04
" Former Maintainer: Charles E. Campbell
" DO NOT CHANGE DIRECTLY.
@@ -1985,10 +1985,10 @@ VimFoldl syn region vimLuaHeredoc contained
" [-- mzscheme --] {{{3
if s:interfaces =~# 'm'
- let s:iskKeep = &isk
+ let s:iskKeep = &l:isk
syn include @vimMzSchemeScript syntax/scheme.vim
unlet b:current_syntax
- let &isk = s:iskKeep
+ let &l:isk = s:iskKeep
endif
syn keyword vimMzScheme mz[scheme] skipwhite
nextgroup=vimMzSchemeHeredoc,vimMzSchemeStatement
--
--
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 visit
https://groups.google.com/d/msgid/vim_dev/E1vGllm-006kP4-ND%40256bit.org.