rename initialization to allow debugging
This commit is contained in:
parent
3f15f4c8b2
commit
b91082c998
|
@ -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
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue