1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:10:06 +08:00

fix(guide): fix prompt of flygrep

execute() silent by default, the prompt can not be displayed
This commit is contained in:
Eric Wong 2024-06-27 23:34:12 +08:00
parent bf632b90da
commit eff98275d0

View File

@ -636,7 +636,7 @@ local function handle_input(input)
--- redraw! --- redraw!
local ok, _ = pcall(vim.fn.execute, input[1]) local ok, _ = pcall(vim.fn.execute, input[1], '')
if not ok then if not ok then
print(vim.v.exception) print(vim.v.exception)
end end