diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-07-30 07:13:45 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-07-30 07:13:45 +0300 |
commit | 224b62fbe49c3069b8626ac07d3165045903ab19 (patch) | |
tree | 8fa3cb19d35f35fc6f3d658b3bb5d60a9d615b15 /internal/p10k.zsh | |
parent | 00ec3d16c2370a2045faaaad3f1d7a8ba1441cc0 (diff) |
silly typo: '\n' => $'\n'
fixes #140
Diffstat (limited to 'internal/p10k.zsh')
-rwxr-xr-x | internal/p10k.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 1a93af0a..306198b3 100755 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -3825,7 +3825,7 @@ _p9k_build_gap_post() { _p9k_ret+='${:-"'$exp'"}' style=1 fi - _p9k_ret+='$_p9k_rprompt$_p9k_t[$((1+!_p9k_ind))]}:-\n}' + _p9k_ret+=$'$_p9k_rprompt$_p9k_t[$((1+!_p9k_ind))]}:-\n}' [[ -n $style ]] && _p9k_ret+='%b%k%f' } |