diff options
Diffstat (limited to 'runtime/lua/vim/_meta')
-rw-r--r-- | runtime/lua/vim/_meta/builtin.lua | 2 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/json.lua | 4 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/mpack.lua | 4 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/regex.lua | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/runtime/lua/vim/_meta/builtin.lua b/runtime/lua/vim/_meta/builtin.lua index 384dd4351d..a1786b2cdb 100644 --- a/runtime/lua/vim/_meta/builtin.lua +++ b/runtime/lua/vim/_meta/builtin.lua @@ -1,6 +1,6 @@ ---@meta ----@defgroup lua-builtin +---@defgroup vim.builtin --- ---@brief <pre>help ---vim.api.{func}({...}) *vim.api* diff --git a/runtime/lua/vim/_meta/json.lua b/runtime/lua/vim/_meta/json.lua index 15e81d5004..2580b56870 100644 --- a/runtime/lua/vim/_meta/json.lua +++ b/runtime/lua/vim/_meta/json.lua @@ -1,8 +1,8 @@ --- @meta ---- @defgroup lua-json +--- @defgroup vim.json --- ---- @brief The \*vim.json\* module provides encoding and decoding of Lua objects to and +--- This module provides encoding and decoding of Lua objects to and --- from JSON-encoded strings. Supports |vim.NIL| and |vim.empty_dict()|. --- Decodes (or "unpacks") the JSON-encoded {str} to a Lua object. diff --git a/runtime/lua/vim/_meta/mpack.lua b/runtime/lua/vim/_meta/mpack.lua index 2764177e5c..1bcb6845b9 100644 --- a/runtime/lua/vim/_meta/mpack.lua +++ b/runtime/lua/vim/_meta/mpack.lua @@ -1,8 +1,8 @@ --- @meta ---- @defgroup lua-mpack +--- @defgroup vim.mpack --- ---- @brief The \*vim.mpack\* module provides encoding and decoding of Lua objects to and +--- This module provides encoding and decoding of Lua objects to and --- from msgpack-encoded strings. Supports |vim.NIL| and |vim.empty_dict()|. --- Decodes (or "unpacks") the msgpack-encoded {str} to a Lua object. diff --git a/runtime/lua/vim/_meta/regex.lua b/runtime/lua/vim/_meta/regex.lua index afa78772da..0af1bccea5 100644 --- a/runtime/lua/vim/_meta/regex.lua +++ b/runtime/lua/vim/_meta/regex.lua @@ -1,6 +1,6 @@ --- @meta ---- @defgroup lua-regex +--- @defgroup vim.regex --- --- @brief Vim regexes can be used directly from Lua. Currently they only allow --- matching within a single line. |