diff options
author | 2025-01-03 04:02:33 +0100 | |
---|---|---|
committer | 2025-01-03 04:02:33 +0100 | |
commit | b70d5b3ee4cda01646406d4d1fe149dc3d41b308 (patch) | |
tree | 9d2fdc477368c573dded223f41b194c04c9ef852 /zuwu.zsh | |
parent | 5f0d1fc048364315784526e59da3a9a8e4e3cb3d (diff) | |
download | zuwu-b70d5b3ee4cda01646406d4d1fe149dc3d41b308.tar.gz zuwu-b70d5b3ee4cda01646406d4d1fe149dc3d41b308.tar.bz2 zuwu-b70d5b3ee4cda01646406d4d1fe149dc3d41b308.tar.lz zuwu-b70d5b3ee4cda01646406d4d1fe149dc3d41b308.zip |
fix: allow setting _ZUWU_DEBUG for debugging init
Diffstat (limited to 'zuwu.zsh')
-rwxr-xr-x | zuwu.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3,6 +3,8 @@ export _ZUWU_INSTALLED=1; +if [[ "$_ZUWU_DEBUG" == "1" ]]; then set -ax; fi + # Completion Handling if ! grep '# The following lines were added by compinstall' ~/.zshrc >/dev/null 2>/dev/null && ! grep 'compinit' ~/.zshrc; then <<EOF >> ~/.zshrc @@ -202,3 +204,5 @@ fi if [[ "$SAVEHIST" == "30" ]]; then SAVEHIST="10000" fi + +if [[ "$_ZUWU_DEBUG" == "1" ]]; then set +ax; fi |