neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 8f5e90811025bcc652146168d5116f8d73fe8f81
parent e7020306a19a5211c834966ec067fff3b981bdb9
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Mon,  1 Jul 2024 17:48:09 +0800

fix(runtime): update b:undo_ftplugin in Lua runtime files (#29529)

Related to #29506, but adding vim.treesitter.stop() to b:undo_ftplugin
doesn't solve the problem yet.
Diffstat:
Mruntime/ftplugin/c.lua | 2+-
Mruntime/ftplugin/cs.lua | 2++
Mruntime/ftplugin/d.lua | 2++
Mruntime/ftplugin/glsl.lua | 2++
Mruntime/ftplugin/help.lua | 2++
Mruntime/ftplugin/query.lua | 2++
6 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/runtime/ftplugin/c.lua b/runtime/ftplugin/c.lua @@ -11,4 +11,4 @@ if vim.fn.isdirectory('/usr/include') == 1 then ]]) end -vim.b.undo_ftplugin = vim.b.undo_ftplugin .. '|setl path<' +vim.b.undo_ftplugin = vim.b.undo_ftplugin .. ' | setl path<' diff --git a/runtime/ftplugin/cs.lua b/runtime/ftplugin/cs.lua @@ -1 +1,3 @@ vim.bo.commentstring = '// %s' + +vim.b.undo_ftplugin = vim.b.undo_ftplugin .. ' | setl commentstring<' diff --git a/runtime/ftplugin/d.lua b/runtime/ftplugin/d.lua @@ -1 +1,3 @@ vim.bo.commentstring = '// %s' + +vim.b.undo_ftplugin = 'setl commentstring<' diff --git a/runtime/ftplugin/glsl.lua b/runtime/ftplugin/glsl.lua @@ -1 +1,3 @@ vim.bo.commentstring = '// %s' + +vim.b.undo_ftplugin = 'setl commentstring<' diff --git a/runtime/ftplugin/help.lua b/runtime/ftplugin/help.lua @@ -30,3 +30,5 @@ end vim.keymap.set('n', 'gO', function() require('vim.vimhelp').show_toc() end, { buffer = 0, silent = true }) + +vim.b.undo_ftplugin = vim.b.undo_ftplugin .. ' | nunmap <buffer> gO' diff --git a/runtime/ftplugin/query.lua b/runtime/ftplugin/query.lua @@ -33,3 +33,5 @@ end -- it's a lisp! vim.cmd([[ runtime! ftplugin/lisp.vim ]]) + +vim.b.undo_ftplugin = vim.b.undo_ftplugin .. ' | setl omnifunc< iskeyword<'