local helper = require("kyoh86.plug.ddu.helper") ---@type LazySpec local spec = { { "flow6852/ddu-source-qf", dependencies = { "Shougo/ddu.vim" }, config = function() helper.map_start("fqc", "quickfix", { sources = { { name = "qf" } } }) helper.map_ff_file("quickfix") end, }, { "kyoh86/ddu-source-quickfix_history", dependencies = { "Shougo/ddu.vim" }, config = function() helper.map_start("fqh", "quickfix_history", { sources = { { name = "quickfix_history" } } }) kyoh86.fa.ddu.custom.patch_global({ kindOptions = { quickfix_history = { defaultAction = "open", }, }, }) end, } } return spec