diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-01 17:48:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-01 17:48:09 +0800 |
commit | 8f5e90811025bcc652146168d5116f8d73fe8f81 (patch) | |
tree | ba23036eee256618c18d2e0f529ac2eee637d81c /runtime/ftplugin/c.lua | |
parent | e7020306a19a5211c834966ec067fff3b981bdb9 (diff) | |
download | rneovim-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.
Diffstat (limited to 'runtime/ftplugin/c.lua')
-rw-r--r-- | runtime/ftplugin/c.lua | 2 |
1 files changed, 1 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<' |