aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-07-01 17:48:09 +0800
committerGitHub <noreply@github.com>2024-07-01 17:48:09 +0800
commit8f5e90811025bcc652146168d5116f8d73fe8f81 (patch)
treeba23036eee256618c18d2e0f529ac2eee637d81c
parente7020306a19a5211c834966ec067fff3b981bdb9 (diff)
downloadrneovim-8f5e90811025bcc652146168d5116f8d73fe8f81.tar.gz
rneovim-8f5e90811025bcc652146168d5116f8d73fe8f81.tar.bz2
rneovim-8f5e90811025bcc652146168d5116f8d73fe8f81.zip
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.
-rw-r--r--runtime/ftplugin/c.lua2
-rw-r--r--runtime/ftplugin/cs.lua2
-rw-r--r--runtime/ftplugin/d.lua2
-rw-r--r--runtime/ftplugin/glsl.lua2
-rw-r--r--runtime/ftplugin/help.lua2
-rw-r--r--runtime/ftplugin/query.lua2
6 files changed, 11 insertions, 1 deletions
diff --git a/runtime/ftplugin/c.lua b/runtime/ftplugin/c.lua
index 2695b642aa..6e68df18d0 100644
--- 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
index f398d66a63..0f90644f11 100644
--- 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
index f398d66a63..49a8702986 100644
--- 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
index f398d66a63..49a8702986 100644
--- 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
index 86e181504f..0628a3e9ca 100644
--- 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
index c75dc30430..499619e36f 100644
--- 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<'