From aa83606299c5beeaf80e656efbf07bde258db7be Mon Sep 17 00:00:00 2001 From: James Trew <66286082+jamestrew@users.noreply.github.com> Date: Fri, 1 Mar 2024 13:09:04 -0500 Subject: [PATCH] fix(config): set default `cache_picker.ignore_empty_prompt` to false (#2962) --- lua/telescope/config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/telescope/config.lua b/lua/telescope/config.lua index 48305b1..38267a6 100644 --- a/lua/telescope/config.lua +++ b/lua/telescope/config.lua @@ -526,7 +526,7 @@ append( { num_pickers = 1, limit_entries = 1000, - ignore_empty_prompt = true, + ignore_empty_prompt = false, }, [[ 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 the prompt is empty (i.e., no text has been typed at the time of closing the prompt). - Default: true + Default: false ]] )