mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
Fix trimming of whitespace in debug/font-issues.zsh
This commit is contained in:
parent
f89a5bb365
commit
ebd4414c29
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ trim() {
|
||||||
set -f
|
set -f
|
||||||
# shellcheck disable=2048,2086
|
# shellcheck disable=2048,2086
|
||||||
set -- $*
|
set -- $*
|
||||||
printf '%s\n' "${*//[[:space:]]/ }"
|
printf '%s\n' "${*//[[:space:]]/}"
|
||||||
set +f
|
set +f
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue