mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
run docgen
This commit is contained in:
parent
3fbd9ed4ab
commit
45236981d8
@ -1415,8 +1415,8 @@ nvim_put({lines}, {type}, {after}, {follow}) *nvim_put()*
|
|||||||
• "c" |charwise| mode
|
• "c" |charwise| mode
|
||||||
• "l" |linewise| mode
|
• "l" |linewise| mode
|
||||||
• "" guess by contents, see |setreg()|
|
• "" guess by contents, see |setreg()|
|
||||||
{after} If true insert after cursor (like |p|), or before (like
|
{after} If true insert after cursor (like |p|), or
|
||||||
|P|).
|
before (like |P|).
|
||||||
{follow} If true place cursor at end of inserted text.
|
{follow} If true place cursor at end of inserted text.
|
||||||
|
|
||||||
*nvim_replace_termcodes()*
|
*nvim_replace_termcodes()*
|
||||||
@ -1737,7 +1737,7 @@ nvim__buf_stats({buffer}) *nvim__buf_stats()*
|
|||||||
TODO: Documentation
|
TODO: Documentation
|
||||||
|
|
||||||
*nvim_buf_add_highlight()*
|
*nvim_buf_add_highlight()*
|
||||||
nvim_buf_add_highlight({buffer}, {src_id}, {hl_group}, {line}, {col_start},
|
nvim_buf_add_highlight({buffer}, {ns_id}, {hl_group}, {line}, {col_start},
|
||||||
{col_end})
|
{col_end})
|
||||||
Adds a highlight to buffer.
|
Adds a highlight to buffer.
|
||||||
|
|
||||||
@ -2468,6 +2468,21 @@ nvim_win_get_width({window}) *nvim_win_get_width()*
|
|||||||
Return: ~
|
Return: ~
|
||||||
Width as a count of columns
|
Width as a count of columns
|
||||||
|
|
||||||
|
nvim_win_hide({window}) *nvim_win_hide()*
|
||||||
|
Closes the window and hide the buffer it contains (like
|
||||||
|
|:hide| with a |window-ID|).
|
||||||
|
|
||||||
|
Like |:hide| the buffer becomes hidden unless another window
|
||||||
|
is editing it, or 'bufhidden' is `unload` , `delete` or `wipe`
|
||||||
|
as opposed to |:close| or |nvim_win_close|, which will close
|
||||||
|
the buffer.
|
||||||
|
|
||||||
|
Attributes: ~
|
||||||
|
not allowed when |textlock| is active
|
||||||
|
|
||||||
|
Parameters: ~
|
||||||
|
{window} Window handle, or 0 for current window
|
||||||
|
|
||||||
nvim_win_is_valid({window}) *nvim_win_is_valid()*
|
nvim_win_is_valid({window}) *nvim_win_is_valid()*
|
||||||
Checks if a window is valid
|
Checks if a window is valid
|
||||||
|
|
||||||
|
@ -1469,8 +1469,8 @@ show_line_diagnostics({opts}, {bufnr}, {line_nr}, {client_id})
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
Lua module: vim.lsp.handlers *lsp-handlers*
|
Lua module: vim.lsp.handlers *lsp-handlers*
|
||||||
|
|
||||||
*vim.lsp.handlers.progress_callback()*
|
*vim.lsp.handlers.progress_handler()*
|
||||||
progress_callback({_}, {_}, {params}, {client_id})
|
progress_handler({_}, {_}, {params}, {client_id})
|
||||||
See also: ~
|
See also: ~
|
||||||
https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workspace_executeCommand
|
https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workspace_executeCommand
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user