Skip to content

Commit

Permalink
Update fuzzy find alias names to match Powershell equivalents
Browse files Browse the repository at this point in the history
Annoyingly Windows Powershell is case insensitive and I end up having to
do work on Windows systems so lets keep custom aliases the same across
platforms so that the dev environments are more familiar.
  • Loading branch information
msp301 committed Aug 30, 2023
1 parent a7de421 commit c23c028
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ source $ZSH/oh-my-zsh.sh
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"

alias gg="_gg \*"
alias GG="_gg $HOME/\*"
alias g="_goto_dir \*"
alias gg="_goto_dir $HOME/\*"

_gg() {
_goto_dir() {
expr=$1
query=()
if [ $# -gt 1 ]; then
Expand Down

0 comments on commit c23c028

Please sign in to comment.