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/lsp/_folding_range.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/lsp/_folding_range.lua')
-rw-r--r-- | runtime/lua/vim/lsp/_folding_range.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/_folding_range.lua b/runtime/lua/vim/lsp/_folding_range.lua index 2f1767aaf5..66eb81db6e 100644 --- a/runtime/lua/vim/lsp/_folding_range.lua +++ b/runtime/lua/vim/lsp/_folding_range.lua @@ -171,7 +171,7 @@ end -- 1. Implement clearing `bufstate` and event hooks -- when no clients in the buffer support the corresponding method. -- 2. Then generalize this state management to other LSP modules. -local augroup_setup = api.nvim_create_augroup('vim_lsp_folding_range/setup', {}) +local augroup_setup = api.nvim_create_augroup('nvim.lsp.folding_range.setup', {}) --- Initialize `bufstate` and event hooks, then request folding ranges. --- Manage their lifecycle within this function. |