mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00
docs: regenerate (#15986)
Co-authored-by: marvim <marvim@users.noreply.github.com>
This commit is contained in:
![41898282+github-actions[bot]@users.noreply.github.com](/assets/img/avatar_default.png)
committed by
GitHub

parent
4219cfcb90
commit
29b718d04c
@@ -531,6 +531,20 @@ nvim__get_hl_defs({ns_id}) *nvim__get_hl_defs()*
|
|||||||
nvim__get_lib_dir() *nvim__get_lib_dir()*
|
nvim__get_lib_dir() *nvim__get_lib_dir()*
|
||||||
TODO: Documentation
|
TODO: Documentation
|
||||||
|
|
||||||
|
nvim__get_runtime({pat}, {all}, {*opts}) *nvim__get_runtime()*
|
||||||
|
Find files in runtime directories
|
||||||
|
|
||||||
|
Attributes: ~
|
||||||
|
{fast}
|
||||||
|
|
||||||
|
Parameters: ~
|
||||||
|
{pat} pattern of files to search for
|
||||||
|
{all} whether to return all matches or only the first
|
||||||
|
{options} is_lua: only search lua subdirs
|
||||||
|
|
||||||
|
Return: ~
|
||||||
|
list of absolute paths to the found files
|
||||||
|
|
||||||
nvim__id({obj}) *nvim__id()*
|
nvim__id({obj}) *nvim__id()*
|
||||||
Returns object given as argument.
|
Returns object given as argument.
|
||||||
|
|
||||||
@@ -582,6 +596,9 @@ nvim__id_float({flt}) *nvim__id_float()*
|
|||||||
nvim__inspect_cell({grid}, {row}, {col}) *nvim__inspect_cell()*
|
nvim__inspect_cell({grid}, {row}, {col}) *nvim__inspect_cell()*
|
||||||
TODO: Documentation
|
TODO: Documentation
|
||||||
|
|
||||||
|
nvim__runtime_inspect() *nvim__runtime_inspect()*
|
||||||
|
TODO: Documentation
|
||||||
|
|
||||||
nvim__screenshot({path}) *nvim__screenshot()*
|
nvim__screenshot({path}) *nvim__screenshot()*
|
||||||
TODO: Documentation
|
TODO: Documentation
|
||||||
|
|
||||||
@@ -802,6 +819,39 @@ nvim_eval({expr}) *nvim_eval()*
|
|||||||
Return: ~
|
Return: ~
|
||||||
Evaluation result or expanded object
|
Evaluation result or expanded object
|
||||||
|
|
||||||
|
nvim_eval_statusline({str}, {*opts}) *nvim_eval_statusline()*
|
||||||
|
Evaluates statusline string.
|
||||||
|
|
||||||
|
Attributes: ~
|
||||||
|
{fast}
|
||||||
|
|
||||||
|
Parameters: ~
|
||||||
|
{str} Statusline string (see 'statusline').
|
||||||
|
{opts} Optional parameters.
|
||||||
|
• winid: (number) |window-ID| of the window to use
|
||||||
|
as context for statusline.
|
||||||
|
• maxwidth: (number) Maximum width of statusline.
|
||||||
|
• fillchar: (string) Character to fill blank
|
||||||
|
spaces in the statusline (see 'fillchars').
|
||||||
|
• highlights: (boolean) Return highlight
|
||||||
|
information.
|
||||||
|
• use_tabline: (boolean) Evaluate tabline instead
|
||||||
|
of statusline. When |TRUE|, {winid} is ignored.
|
||||||
|
|
||||||
|
Return: ~
|
||||||
|
Dictionary containing statusline information, with these
|
||||||
|
keys:
|
||||||
|
• str: (string) Characters that will be displayed on the
|
||||||
|
statusline.
|
||||||
|
• width: (number) Display width of the statusline.
|
||||||
|
• highlights: Array containing highlight information of
|
||||||
|
the statusline. Only included when the "highlights" key
|
||||||
|
in {opts} is |TRUE|. Each element of the array is a
|
||||||
|
|Dictionary| with these keys:
|
||||||
|
• start: (number) Byte index (0-based) of first
|
||||||
|
character that uses the highlight.
|
||||||
|
• group: (string) Name of highlight group.
|
||||||
|
|
||||||
nvim_exec({src}, {output}) *nvim_exec()*
|
nvim_exec({src}, {output}) *nvim_exec()*
|
||||||
Executes Vimscript (multiline block of Ex-commands), like
|
Executes Vimscript (multiline block of Ex-commands), like
|
||||||
anonymous |:source|.
|
anonymous |:source|.
|
||||||
|
@@ -626,6 +626,10 @@ client_is_stopped({client_id}) *vim.lsp.client_is_stopped()*
|
|||||||
true if client is stopped, false otherwise.
|
true if client is stopped, false otherwise.
|
||||||
|
|
||||||
flush({client}) *vim.lsp.flush()*
|
flush({client}) *vim.lsp.flush()*
|
||||||
|
TODO: Documentation
|
||||||
|
|
||||||
|
*vim.lsp.for_each_buffer_client()*
|
||||||
|
for_each_buffer_client({bufnr}, {fn})
|
||||||
TODO: Documentation
|
TODO: Documentation
|
||||||
|
|
||||||
get_active_clients() *vim.lsp.get_active_clients()*
|
get_active_clients() *vim.lsp.get_active_clients()*
|
||||||
|
Reference in New Issue
Block a user