mirror of
https://github.com/kristoferssolo/telescope-frecency.nvim.git
synced 2025-10-21 20:10:38 +00:00
fix: ore robust handling of configuration defaults. (#57)
This commit is contained in:
parent
979a6f3d88
commit
68ac8cfe67
@ -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 = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user