From f7f4de7e5c7a39cb9885a80ca1d512220cb4da46 Mon Sep 17 00:00:00 2001 From: Ajeet D'Souza <98ajeet@gmail.com> Date: Sun, 5 May 2024 19:32:02 +0530 Subject: [PATCH] Spacing and comments --- templates/zsh.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/templates/zsh.txt b/templates/zsh.txt index 9ada542..595d22e 100644 --- a/templates/zsh.txt +++ b/templates/zsh.txt @@ -100,7 +100,6 @@ if [[ -o zle ]]; then # Show completions for local directories. _cd -/ - # Don't return 0 so we can fall back to another comleter if unsuccessful. elif [[ "${words[-1]}" == '' ]]; then # Show completions for Space-Tab. # shellcheck disable=SC2086 @@ -112,9 +111,9 @@ if [[ -o zle ]]; then \builtin printf '\e[5n' fi - # Report that the completion was successful, so that we don't fall back - # to another completion function. - return 0 + # Report that the completion was successful, so that we don't fall back + # to another completion function. + return 0 } function __zoxide_z_complete_helper() {