Skip to content

Commit

Permalink
fix(quickfix): remove icon fuzzy exclusion
Browse files Browse the repository at this point in the history
messes up the field index expression for `bat_native`.
  • Loading branch information
ibhagwan committed Mar 12, 2024
1 parent 963749b commit eb04574
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions lua/fzf-lua/defaults.lua
Original file line number Diff line number Diff line change
Expand Up @@ -378,16 +378,15 @@ M.defaults.oldfiles = {
}

M.defaults.quickfix = {
previewer = M._default_previewer_fn,
prompt = "Quickfix> ",
separator = "",
file_icons = true and M._has_devicons,
color_icons = true,
git_icons = false,
fzf_opts = { ["--multi"] = true },
_fzf_nth_devicons = true,
_actions = function() return M.globals.actions.files end,
only_valid = false,
previewer = M._default_previewer_fn,
prompt = "Quickfix> ",
separator = "",
file_icons = true and M._has_devicons,
color_icons = true,
git_icons = false,
fzf_opts = { ["--multi"] = true },
_actions = function() return M.globals.actions.files end,
only_valid = false,
}

M.defaults.quickfix_stack = {
Expand Down Expand Up @@ -940,7 +939,7 @@ M.defaults.dap = {
}

M.defaults.complete_path = {
cmd = nil, -- default: auto detect fd|rg|find
cmd = nil, -- default: auto detect fd|rg|find
file_icons = false,
git_icons = false,
color_icons = true,
Expand All @@ -951,7 +950,7 @@ M.defaults.complete_path = {
}

M.defaults.complete_file = {
cmd = nil, -- default: auto detect rg|fd|find
cmd = nil, -- default: auto detect rg|fd|find
multiprocess = true,
file_icons = true and M._has_devicons,
color_icons = true,
Expand Down

0 comments on commit eb04574

Please sign in to comment.