Skip to content

Commit

Permalink
fix: vim.notify in fast event
Browse files Browse the repository at this point in the history
should resolve #52
  • Loading branch information
gsuuon committed Feb 21, 2024
1 parent 8b5416c commit 27779f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/model/prompts/extract.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function M.markdown_code(md_text)

local code_blocks = vim.tbl_filter(function(block)
if block.text ~= nil then
vim.notify(block.text)
util.show(block.text)
end
return block.code ~= nil
end, blocks)
Expand Down

0 comments on commit 27779f6

Please sign in to comment.