diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-17 12:34:42 -0400 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-17 12:34:42 -0400 |
| commit | a9d9b3d8bf694914a07a01749306dd5157b868d7 (patch) | |
| tree | f274d94a7c251bd25496cc3d3a66d8d8751d9de3 /lua/telescope/builtin.lua | |
| parent | 7bdb39b138ac49f20143d8a3a94467ecc32c23ed (diff) | |
feat: Improved previewers and cleanup
Diffstat (limited to 'lua/telescope/builtin.lua')
| -rw-r--r-- | lua/telescope/builtin.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/telescope/builtin.lua b/lua/telescope/builtin.lua index 5b9a678..bd8e5d5 100644 --- a/lua/telescope/builtin.lua +++ b/lua/telescope/builtin.lua @@ -294,6 +294,8 @@ builtin.lsp_workspace_symbols = function(opts) end builtin.quickfix = function(opts) + opts = opts or {} + local locations = vim.fn.getqflist() if vim.tbl_isempty(locations) then @@ -603,6 +605,8 @@ builtin.planets = function(opts) print("Enjoy astronomy! You viewed:", selection.display) end) + + return true end, }:find() end |
