diff options
| author | Aiden Scandella <sc@ndella.com> | 2021-08-23 10:07:57 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-23 19:07:57 +0200 |
| commit | f45c170f2853c1c1492d3f30a950a99d30706ea2 (patch) | |
| tree | 84db9b70f1c3d18e8989adb22f13e7d83641dd7b /lua/telescope/builtin/internal.lua | |
| parent | 79dc995f820150d5de880c08e814af327ff7e965 (diff) | |
fix(pickers): attach_mappings on builtins.buffers needs return (#1155)
Diffstat (limited to 'lua/telescope/builtin/internal.lua')
| -rw-r--r-- | lua/telescope/builtin/internal.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/telescope/builtin/internal.lua b/lua/telescope/builtin/internal.lua index 4b2747b..b71811e 100644 --- a/lua/telescope/builtin/internal.lua +++ b/lua/telescope/builtin/internal.lua @@ -665,6 +665,7 @@ internal.buffers = function(opts) vim.api.nvim_win_set_cursor(0, { entry.lnum, entry.col or 0 }) end, } + return true end, }):find() end |
