aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorMathias Fußenegger <mfussenegger@users.noreply.github.com>2021-11-25 02:49:34 +0100
committerGitHub <noreply@github.com>2021-11-24 20:49:34 -0500
commitf2722884a88170d62bd2509b94cda759d5312646 (patch)
treed5bbfcfbba19ea1b60edc0e99de4b84ef39a541f /runtime/doc
parentc132144d2458ff9458c9f7a24e280d37cdd8c216 (diff)
downloadrneovim-f2722884a88170d62bd2509b94cda759d5312646.tar.gz
rneovim-f2722884a88170d62bd2509b94cda759d5312646.tar.bz2
rneovim-f2722884a88170d62bd2509b94cda759d5312646.zip
perf(lsp)!: use faster line retrieval for utf-16 to byte idx conversion (#16360)
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/lsp.txt20
1 files changed, 0 insertions, 20 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt
index 1e84402a9f..1a54ca227f 100644
--- a/runtime/doc/lsp.txt
+++ b/runtime/doc/lsp.txt
@@ -1462,26 +1462,6 @@ get_effective_tabstop({bufnr}) *vim.lsp.util.get_effective_tabstop()*
See also: ~
|softtabstop|
-get_line({uri}, {row}) *vim.lsp.util.get_line()*
- Gets the zero-indexed line from the given uri.
-
- Parameters: ~
- {uri} string uri of the resource to get the line from
- {row} number zero-indexed line number
-
- Return: ~
- string the line at row in filename
-
-get_lines({uri}, {rows}) *vim.lsp.util.get_lines()*
- Gets the zero-indexed lines from the given uri.
-
- Parameters: ~
- {uri} string uri of the resource to get the lines from
- {rows} number[] zero-indexed line numbers
-
- Return: ~
- table<number string> a table mapping rows to lines
-
get_progress_messages() *vim.lsp.util.get_progress_messages()*
TODO: Documentation