.dotfiles/zsh/functions/fx.zsh

12 lines
161 B
Bash
Raw Normal View History

2020-11-07 15:58:15 +01:00
# Helps navigating Sync directory
function fx(){
cd $HOME/SYNC/
if [ "$2" != "" ]; then
cd $2
fi
if [ "$1" = "o" ]; then
code-insiders .
fi
}