From c332042ac802c2bc3d89e5d541cbc974dffba514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 2 Feb 2022 01:06:03 +0100 Subject: [PATCH] fix mbox vim plugin telescope preview (#249) --- CHANGELOG.md | 2 ++ vim/lua/himalaya/mbox.lua | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95c5718..7ebdb56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Range not displayed when fetch fails [#276] - Blank lines and spaces in `text/plain` parts [#280] - Watch command [#271] +- Mailbox telescope.nvim preview [#249] ### Removed @@ -370,6 +371,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#220]: https://github.com/soywod/himalaya/issues/220 [#228]: https://github.com/soywod/himalaya/issues/228 [#229]: https://github.com/soywod/himalaya/issues/229 +[#249]: https://github.com/soywod/himalaya/issues/249 [#268]: https://github.com/soywod/himalaya/issues/268 [#272]: https://github.com/soywod/himalaya/issues/272 [#273]: https://github.com/soywod/himalaya/issues/273 diff --git a/vim/lua/himalaya/mbox.lua b/vim/lua/himalaya/mbox.lua index 1a13a2d..bee0e3d 100644 --- a/vim/lua/himalaya/mbox.lua +++ b/vim/lua/himalaya/mbox.lua @@ -10,7 +10,7 @@ local previewers = require('telescope.previewers') local function preview_command(entry, bufnr) vim.api.nvim_buf_call(bufnr, function() local page = 0 -- page 0 for preview - local account = pcall(vim.fn['himalaya#account#curr']) + local account = vim.fn['himalaya#account#curr']() local success, output = pcall(vim.fn['himalaya#msg#list_with'], account, entry.value, page, true) if not (success) then vim.cmd('redraw')