We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79552ef commit d545783Copy full SHA for d545783
lua/telescope/actions/init.lua
@@ -488,7 +488,9 @@ end
488
actions.insert_symbol = function(prompt_bufnr)
489
local symbol = action_state.get_selected_entry().value[1]
490
actions.close(prompt_bufnr)
491
- vim.api.nvim_put({ symbol }, "", true, true)
+ vim.schedule(function()
492
+ vim.api.nvim_put({ symbol }, "", true, true)
493
+ end)
494
end
495
496
--- Insert a symbol into the current buffer and keeping the insert mode.
0 commit comments