summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaximilian Schmidt <maximilian.schmidt@tuhh.de>2022-04-26 08:54:04 +0200
committerGitHub <noreply@github.com>2022-04-26 08:54:04 +0200
commit6a54433038ce6d37e506ff9102ad7fcca121d58a (patch)
tree6b106b986e8cd811f6a39af1aabf7ae79b33be2b /doc
parent2b8c7b1ec7a3b27f1d24478c404ce4b2a82cc055 (diff)
docs: fix typo in reference to vim.lsp.buf.code_action (#1883)
Diffstat (limited to 'doc')
-rw-r--r--doc/telescope_changelog.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/telescope_changelog.txt b/doc/telescope_changelog.txt
index a1b509d..a11ad84 100644
--- a/doc/telescope_changelog.txt
+++ b/doc/telescope_changelog.txt
@@ -184,8 +184,8 @@ We decided to remove both `lsp_code_actions` and `lsp_range_code_actions`.
Currently, both functions are highly duplicated code from neovim, with fewer
features, because it's out of date. So rather that we copy over the required
changes to fix some bugs or implement client side code actions, we decided to
-remove both of them and suggest you use `vim.lsp.buf.code_actions` and
-`vim.lsp.buf.range_code_actions`. The transition to it is easy thanks to
+remove both of them and suggest you use `vim.lsp.buf.code_action` and
+`vim.lsp.buf.range_code_action`. The transition to it is easy thanks to
`vim.ui.select` which allows you to override the select UI. We provide a small
extension for quite some time that make it easy to use telescope for
`vim.ui.select`. You can found the code here