fix(config): set default cache_picker.ignore_empty_prompt to false (#2962)

This commit is contained in:
James Trew
2024-03-01 13:09:04 -05:00
committed by GitHub
parent 5f5fc3aa75
commit aa83606299

View File

@@ -526,7 +526,7 @@ append(
{ {
num_pickers = 1, num_pickers = 1,
limit_entries = 1000, limit_entries = 1000,
ignore_empty_prompt = true, ignore_empty_prompt = false,
}, },
[[ [[
This field handles the configuration for picker caching. This field handles the configuration for picker caching.
@@ -551,7 +551,7 @@ append(
- ignore_empty_prompt: If true, the picker will not be cached if - ignore_empty_prompt: If true, the picker will not be cached if
the prompt is empty (i.e., no text has been the prompt is empty (i.e., no text has been
typed at the time of closing the prompt). typed at the time of closing the prompt).
Default: true Default: false
]] ]]
) )