diff options
author | Maria José Solano <majosolano99@gmail.com> | 2025-01-13 19:39:03 -0800 |
---|---|---|
committer | Maria José Solano <majosolano99@gmail.com> | 2025-01-14 19:55:29 -0800 |
commit | 850084b519e18122820478a71bb4bfa4c15e528a (patch) | |
tree | 823be74521c51f4f19ba6c35bcffdf24396e0e8a /runtime/lua/vim/vimhelp.lua | |
parent | a4f575abd85e734340ee303daace1a63e5ca9782 (diff) | |
download | rneovim-850084b519e18122820478a71bb4bfa4c15e528a.tar.gz rneovim-850084b519e18122820478a71bb4bfa4c15e528a.tar.bz2 rneovim-850084b519e18122820478a71bb4bfa4c15e528a.zip |
refactor: use nvim.foo.bar format for namespaces
Diffstat (limited to 'runtime/lua/vim/vimhelp.lua')
-rw-r--r-- | runtime/lua/vim/vimhelp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/vimhelp.lua b/runtime/lua/vim/vimhelp.lua index 5579cc0174..a494d311b1 100644 --- a/runtime/lua/vim/vimhelp.lua +++ b/runtime/lua/vim/vimhelp.lua @@ -7,7 +7,7 @@ local M = {} --- Note: {patterns} is assumed to be sorted by occurrence in the file. --- @param patterns {start:string,stop:string,match:string}[] function M.highlight_groups(patterns) - local ns = vim.api.nvim_create_namespace('vimhelp') + local ns = vim.api.nvim_create_namespace('nvim.vimhelp') vim.api.nvim_buf_clear_namespace(0, ns, 0, -1) local save_cursor = vim.fn.getcurpos() |