diff options
| author | oberblastmeister <61095988+oberblastmeister@users.noreply.github.com> | 2021-03-07 02:50:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-07 08:50:57 +0100 |
| commit | 1c80a92d4027c03b65cce1fe27ef664cff77186d (patch) | |
| tree | afe01afa9c6dca8c80f6e383bd1f85596fe6991d /lua/telescope/actions/init.lua | |
| parent | 68c30dd560f81ab0b11fe8b622b710ca40a1fddb (diff) | |
fix: `error using dictionary as a string` when running send_to_qflist (#622)
Diffstat (limited to 'lua/telescope/actions/init.lua')
| -rw-r--r-- | lua/telescope/actions/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/actions/init.lua b/lua/telescope/actions/init.lua index cf230e7..d0bd27c 100644 --- a/lua/telescope/actions/init.lua +++ b/lua/telescope/actions/init.lua @@ -380,7 +380,7 @@ local entry_to_qf = function(entry) filename = entry.filename, lnum = entry.lnum, col = entry.col, - text = entry.value, + text = entry.text or entry.value.text or entry.value, } end |
