diff options
author | Adam Hovorka <[email protected]> | 2020-05-22 17:27:06 -0600 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2020-05-22 17:27:06 -0600 |
commit | 65560e4b22a84b3dea0cb806613214f26086e8af (patch) | |
tree | 803defe7a2949cab932a50d51cd312e79a20d3ca /base/zsh/k.zsh | |
parent | 2da3eee39b2d246b5b768696e7556378df95c070 (diff) |
Fix symlink spacing in k.zsh for realsies this time
Diffstat (limited to 'base/zsh/k.zsh')
-rw-r--r-- | base/zsh/k.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/zsh/k.zsh b/base/zsh/k.zsh index 9b63423..6e2e2bd 100644 --- a/base/zsh/k.zsh +++ b/base/zsh/k.zsh @@ -581,7 +581,7 @@ k () { # -------------------------------------------------------------------------- # Format symlink target # -------------------------------------------------------------------------- - if [[ -n $SYMLINK_TARGET ]]; then SYMLINK_TARGET="-> ${SYMLINK_TARGET//$'\e'/\\e}"; fi + if [[ -n $SYMLINK_TARGET ]]; then SYMLINK_TARGET=" -> ${SYMLINK_TARGET//$'\e'/\\e}"; fi # -------------------------------------------------------------------------- # Display final result |