diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-12-13 12:00:11 +0000 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2023-12-14 12:39:18 +0000 |
commit | 97bea3163a3fe50359e7f6ffda747e28974a818a (patch) | |
tree | dd369da0134c8d08596f7b80931642c28580d47d /runtime/lua/vim/_meta/vvars.lua | |
parent | 320e9c1c21817fd76b84345018661f70437fa4b5 (diff) | |
download | rneovim-97bea3163a3fe50359e7f6ffda747e28974a818a.tar.gz rneovim-97bea3163a3fe50359e7f6ffda747e28974a818a.tar.bz2 rneovim-97bea3163a3fe50359e7f6ffda747e28974a818a.zip |
feat(lsp): more annotations
Diffstat (limited to 'runtime/lua/vim/_meta/vvars.lua')
-rw-r--r-- | runtime/lua/vim/_meta/vvars.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/runtime/lua/vim/_meta/vvars.lua b/runtime/lua/vim/_meta/vvars.lua new file mode 100644 index 0000000000..059ef04203 --- /dev/null +++ b/runtime/lua/vim/_meta/vvars.lua @@ -0,0 +1,23 @@ +--- @meta _ + +-- TODO(lewis6991): generate this and `:help vim-variable` + +--- @class vim.v +--- The count given for the last Normal mode command. Can be used +--- to get the count before a mapping. Read-only. Example: +--- ```vim +--- :map _x :<C-U>echo "the count is " .. v:count<CR> +--- ``` +--- Note: The <C-U> is required to remove the line range that you +--- get when typing ':' after a count. +--- When there are two counts, as in "3d2w", they are multiplied, +--- just like what happens in the command, "d6w" for the example. +--- Also used for evaluating the 'formatexpr' option. +--- @field count integer +--- +--- Line number for the 'foldexpr' |fold-expr|, 'formatexpr', +--- 'indentexpr' and 'statuscolumn' expressions, tab page number +--- for 'guitablabel' and 'guitabtooltip'. Only valid while one of +--- these expressions is being evaluated. Read-only when in the |sandbox|. +--- @field lnum integer +vim.v = ... |