diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-05 23:34:52 -0400 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-05 23:34:52 -0400 |
| commit | 0185d9b6b0fb2b00317ddec870cc6d2ac923a4ad (patch) | |
| tree | 1b74f299ff9510979562e5b91fc4439312bc49cc /lua | |
| parent | d3c9b65252ab1fa532811fee0212f68b50b30601 (diff) | |
fix: err msg
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/builtin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin.lua b/lua/telescope/builtin.lua index 11f0b49..8cf6906 100644 --- a/lua/telescope/builtin.lua +++ b/lua/telescope/builtin.lua @@ -147,7 +147,7 @@ builtin.lsp_workspace_symbols = function(opts) local results_lsp = vim.lsp.buf_request_sync(0, "workspace/symbol", params, 1000) if not results_lsp or vim.tbl_isempty(results_lsp) then - print("No results from textDocument/documentSymbol") + print("No results from workspace/symbol") return end |
