diff options
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/deprecated.txt | 2 | ||||
-rw-r--r-- | runtime/doc/lsp.txt | 27 | ||||
-rw-r--r-- | runtime/doc/news.txt | 2 |
3 files changed, 4 insertions, 27 deletions
diff --git a/runtime/doc/deprecated.txt b/runtime/doc/deprecated.txt index 407d7ae9fb..7a2b29f8c8 100644 --- a/runtime/doc/deprecated.txt +++ b/runtime/doc/deprecated.txt @@ -142,6 +142,8 @@ LSP FUNCTIONS - *vim.lsp.get_active_clients()* Use |vim.lsp.get_clients()| - *vim.lsp.for_each_buffer_client()* Use |vim.lsp.get_clients()| - *vim.lsp.util.trim_empty_lines()* Use |vim.split()| with `trimempty` instead. +- *vim.lsp.util.try_trim_markdown_code_blocks()* +- *vim.lsp.util.set_lines()* TREESITTER FUNCTIONS - *vim.treesitter.language.require_language()* Use |vim.treesitter.language.add()| diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 23902f8bc3..5d32a1b4d0 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -1955,20 +1955,6 @@ rename({old_fname}, {new_fname}, {opts}) *vim.lsp.util.rename()* Parameters: ~ • {opts} (table) -set_lines({lines}, {A}, {B}, {new_lines}) *vim.lsp.util.set_lines()* - Replaces text in a range with new text. - - CAUTION: Changes in-place! - - Parameters: ~ - • {lines} (table) Original list of strings - • {A} (table) Start position; a 2-tuple of {line,col} numbers - • {B} (table) End position; a 2-tuple of {line,col} numbers - • {new_lines} (table) list of strings to replace the original - - Return: ~ - (table) The modified {lines} object - *vim.lsp.util.show_document()* show_document({location}, {offset_encoding}, {opts}) Shows document and optionally jumps to the location. @@ -2033,19 +2019,6 @@ text_document_completion_list_to_complete_items({result}, {prefix}) See also: ~ • complete-items - *vim.lsp.util.try_trim_markdown_code_blocks()* -try_trim_markdown_code_blocks({lines}) - Accepts markdown lines and tries to reduce them to a filetype if they - comprise just a single code block. - - CAUTION: Modifies the input in-place! - - Parameters: ~ - • {lines} (table) list of lines - - Return: ~ - (string) filetype or "markdown" if it was unchanged. - ============================================================================== Lua module: vim.lsp.log *lsp-log* diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index ff0ccfb08f..3062c4c393 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -281,6 +281,8 @@ release. - |vim.lsp.get_active_clients()| Use |vim.lsp.get_clients()| instead. - |vim.lsp.for_each_buffer_client()| Use |vim.lsp.get_clients()| instead. - |vim.lsp.util.trim_empty_lines()| Use |vim.split()| with `trimempty` instead. + - |vim.lsp.util.try_trim_markdown_code_blocks()| + - |vim.lsp.util.set_lines()| • `vim.loop` has been renamed to `vim.uv`. |