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
|
||||
# shellcheck disable=2048,2086
|
||||
set -- $*
|
||||
printf '%s\n' "${*//[[:space:]]/ }"
|
||||
printf '%s\n' "${*//[[:space:]]/}"
|
||||
set +f
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue