Spacing and comments
This commit is contained in:
parent
abee3bd807
commit
f7f4de7e5c
|
|
@ -100,7 +100,6 @@ if [[ -o zle ]]; then
|
||||||
# Show completions for local directories.
|
# Show completions for local directories.
|
||||||
_cd -/
|
_cd -/
|
||||||
|
|
||||||
# Don't return 0 so we can fall back to another comleter if unsuccessful.
|
|
||||||
elif [[ "${words[-1]}" == '' ]]; then
|
elif [[ "${words[-1]}" == '' ]]; then
|
||||||
# Show completions for Space-Tab.
|
# Show completions for Space-Tab.
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
|
|
@ -112,9 +111,9 @@ if [[ -o zle ]]; then
|
||||||
\builtin printf '\e[5n'
|
\builtin printf '\e[5n'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Report that the completion was successful, so that we don't fall back
|
# Report that the completion was successful, so that we don't fall back
|
||||||
# to another completion function.
|
# to another completion function.
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
function __zoxide_z_complete_helper() {
|
function __zoxide_z_complete_helper() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue