Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save azadag/729b1e3c0120f20eafabee31590f9632 to your computer and use it in GitHub Desktop.
Save azadag/729b1e3c0120f20eafabee31590f9632 to your computer and use it in GitHub Desktop.
Fix "➜" and "✗" of oh-my-zsh default theme making the cursor position wrong under some terminals(such as Mosh Chrome App, Termius[Chrome App Version, Mac Version, Windows Version])
#!/bin/sh
DIR="$HOME/.oh-my-zsh/custom/themes"
mkdir -p $DIR
cd $DIR
sed "s/➜/→/g;s/✗/×/g" $HOME/.oh-my-zsh/themes/robbyrussell.zsh-theme > robbyrussell.zsh-theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment