mirror of
https://github.com/kristoferssolo/telescope-frecency.nvim.git
synced 2026-02-04 23:02:06 +00:00
fix: ore robust handling of configuration defaults. (#57)
This commit is contained in:
@@ -285,8 +285,8 @@ return telescope.register_extension {
|
|||||||
db_client.init(
|
db_client.init(
|
||||||
ext_config.db_root,
|
ext_config.db_root,
|
||||||
ext_config.ignore_patterns,
|
ext_config.ignore_patterns,
|
||||||
ext_config.db_safe_mode or true,
|
vim.F.if_nil(ext_config.db_safe_mode, true),
|
||||||
ext_config.auto_validate or true
|
vim.F.if_nil(ext_config.auto_validate, true)
|
||||||
)
|
)
|
||||||
end,
|
end,
|
||||||
exports = {
|
exports = {
|
||||||
|
|||||||
Reference in New Issue
Block a user