diff options
author | Maria José Solano <majosolano99@gmail.com> | 2025-01-13 19:45:11 -0800 |
---|---|---|
committer | Maria José Solano <majosolano99@gmail.com> | 2025-01-14 21:25:25 -0800 |
commit | 09e01437c968be4c6e9f6bb3ac8811108c58008c (patch) | |
tree | 1e3842b02aeed91f80f04a82d0b2b37aac689355 /runtime/lua/vim/treesitter/_fold.lua | |
parent | 850084b519e18122820478a71bb4bfa4c15e528a (diff) | |
download | rneovim-09e01437c968be4c6e9f6bb3ac8811108c58008c.tar.gz rneovim-09e01437c968be4c6e9f6bb3ac8811108c58008c.tar.bz2 rneovim-09e01437c968be4c6e9f6bb3ac8811108c58008c.zip |
refactor: use nvim.foo.bar format for autocommand groups
Diffstat (limited to 'runtime/lua/vim/treesitter/_fold.lua')
-rw-r--r-- | runtime/lua/vim/treesitter/_fold.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/treesitter/_fold.lua b/runtime/lua/vim/treesitter/_fold.lua index 7f1d1b14d5..cf5c40cd1e 100644 --- a/runtime/lua/vim/treesitter/_fold.lua +++ b/runtime/lua/vim/treesitter/_fold.lua @@ -183,7 +183,7 @@ local M = {} ---@type table<integer,TS.FoldInfo> local foldinfos = {} -local group = api.nvim_create_augroup('treesitter/fold', {}) +local group = api.nvim_create_augroup('nvim.treesitter.fold', {}) --- Update the folds in the windows that contain the buffer and use expr foldmethod (assuming that --- the user doesn't use different foldexpr for the same buffer). |