rename initialization to allow debugging

This commit is contained in:
Lockszmith (@kateryna) 2025-04-03 21:15:16 -04:00
parent 3f15f4c8b2
commit b91082c998
3 changed files with 5 additions and 4 deletions

View File

@ -4,5 +4,5 @@ if [[ ! "$-" =~ i ]]; then
LOAD_EXIT=1 LOAD_EXIT=1
echo "Non interactive session ($-) , stopping load of shell environment" 1>&2 echo "Non interactive session ($-) , stopping load of shell environment" 1>&2
else else
reset ${NO_RESET:+:} reset
fi fi

View File

@ -11,7 +11,7 @@ is_sourced() {
} }
BASE_0=${BASE_0:-$0} BASE_0=${BASE_0:-$0}
BASE_SHELL=$(basename "$SHELL") BASE_SHELL="${BASE_SHELL:-$(basename "$SHELL")}"
if is_sourced; then if is_sourced; then
zellij-cleanup() { zellij-cleanup() {
@ -47,7 +47,8 @@ ${SET:-:} -x
env zellij "${@}" env zellij "${@}"
fi fi
} }
zellij-completion() {
zellij-load-completion() {
if [[ "${BASE_SHELL}" == "zsh" ]]; then if [[ "${BASE_SHELL}" == "zsh" ]]; then
type _zellij > /dev/null \ type _zellij > /dev/null \
|| . <( env zellij setup --generate-completion zsh | sed -Ee 's/^(_(zellij) ).*/compdef \1\2/' ) || . <( env zellij setup --generate-completion zsh | sed -Ee 's/^(_(zellij) ).*/compdef \1\2/' )
@ -57,7 +58,7 @@ ${SET:-:} -x
} }
${SET:-:} -x ${SET:-:} -x
if [[ -n "$(env which zellij)" ]]; then if [[ -n "$(env which zellij)" ]]; then
zellij-completion zellij-load-completion
fi fi
${SET:-:} -x ${SET:-:} -x
# Was needed when zsh would load # Was needed when zsh would load