You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#2225 does implement config value / option error_mode with the following values "modes":
"lua" (default, because current behavior)
"notify"
"silent"
Telescope git_files error_mode=notify or :lua require("telescope.builtin").git_files { error_mode = "notify" } or configure it in the default table in telescope.setup
feedback is appreciated.
Edit: Its not done yet, because i have to go over all builtins and make error handling consistent.
Like we should do
error
everywhere in every single frontend function and then have ano_error
option, which defaults to false.If this option is set, we will pcall the frontend function and
if not ok
, callvim.notify
with the message.Option should behave like all conf, opts options and should be overridable on a local level.
Option name is still open for debate.
The text was updated successfully, but these errors were encountered: