diff options
author | Carlo Sala <carlosalag@protonmail.com> | 2023-05-03 11:17:47 +0200 |
---|---|---|
committer | Carlo Sala <carlosalag@protonmail.com> | 2023-05-03 11:19:41 +0200 |
commit | 85fdbfe21692a3fa7bdd7bc509163e23fb385279 (patch) | |
tree | 572d5e6f4504c0f7f43f8c727b16762e7d68010b /themes | |
parent | dab09cc0eec220f5c1a541ccb75449c62c20bdb4 (diff) | |
download | zsh-85fdbfe21692a3fa7bdd7bc509163e23fb385279.tar.gz zsh-85fdbfe21692a3fa7bdd7bc509163e23fb385279.tar.bz2 zsh-85fdbfe21692a3fa7bdd7bc509163e23fb385279.zip |
fix(apple): go back to previous icon
Turns out that <U+F8FF> is a reserved unicode code that is Apple logo in
Apple systems.
Nerd fonts was overwritting that code to other stuff in v2 and that's
why I thought it needed to be replaced.
Closes #11665
This reverts commit 693e3dcc447b5d6fa611eea43166ea2b4e0ed877.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/apple.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/apple.zsh-theme b/themes/apple.zsh-theme index 65a2b80fe..0c183258e 100644 --- a/themes/apple.zsh-theme +++ b/themes/apple.zsh-theme @@ -1,5 +1,5 @@ function toon { - echo -n "" + echo -n "" } autoload -Uz vcs_info |