From 3d9b431ec73b069adf6fafd526df2f179b73e985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20=C5=BDilinskas?= Date: Tue, 6 Aug 2024 02:23:17 +0300 Subject: [PATCH 1/2] Updated zsh-select configuration ZSHSELECT_INSTANT_SELECT. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martynas Žilinskas --- ecosystem/plugins/zsh_select.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/ecosystem/plugins/zsh_select.mdx b/ecosystem/plugins/zsh_select.mdx index e758298d4..a096a5b67 100644 --- a/ecosystem/plugins/zsh_select.mdx +++ b/ecosystem/plugins/zsh_select.mdx @@ -100,6 +100,7 @@ export ZSHSELECT_COLOR_PAIR="white/black" # Draw in white foreground, black ba export ZSHSELECT_BORDER="0" # No border around interface, Use "1" for the border export ZSHSELECT_ACTIVE_TEXT="reverse" # Mark current element with reversed text. Use "underline" for marking with underline export ZSHSELECT_START_IN_SEARCH_MODE="1" # Starts Zsh Select with searching active. "0" will not invoke searching at the start. +export ZSHSELECT_INSTANT_SELECT="1" # If 1, pressing enter when in search mode will not only leave the mode, but also do selection and leave tool. ``` From e5eaff6f48ea8fb02f5f76cdfc6714a50e021a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20=C5=BDilinskas?= Date: Tue, 6 Aug 2024 02:25:13 +0300 Subject: [PATCH 2/2] Aligned comment. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martynas Žilinskas --- ecosystem/plugins/zsh_select.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecosystem/plugins/zsh_select.mdx b/ecosystem/plugins/zsh_select.mdx index a096a5b67..d99e80988 100644 --- a/ecosystem/plugins/zsh_select.mdx +++ b/ecosystem/plugins/zsh_select.mdx @@ -100,7 +100,7 @@ export ZSHSELECT_COLOR_PAIR="white/black" # Draw in white foreground, black ba export ZSHSELECT_BORDER="0" # No border around interface, Use "1" for the border export ZSHSELECT_ACTIVE_TEXT="reverse" # Mark current element with reversed text. Use "underline" for marking with underline export ZSHSELECT_START_IN_SEARCH_MODE="1" # Starts Zsh Select with searching active. "0" will not invoke searching at the start. -export ZSHSELECT_INSTANT_SELECT="1" # If 1, pressing enter when in search mode will not only leave the mode, but also do selection and leave tool. +export ZSHSELECT_INSTANT_SELECT="1" # If 1, pressing enter when in search mode will not only leave the mode, but also do selection and leave tool. ```