Skip to content

Commit

Permalink
Revert "Merge remote-tracking branch 'sodiumjoe/optimize-startup'"
Browse files Browse the repository at this point in the history
This reverts commit 39990ff, reversing
changes made to c4d82b1.
  • Loading branch information
wting committed Sep 30, 2016
1 parent 8eb0942 commit b2f243e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/autojump
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ from autojump_utils import sanitize
from autojump_utils import take
from autojump_utils import unico

VERSION = '22.4.0'
VERSION = '22.4.1'
FUZZY_MATCH_THRESHOLD = 0.6
TAB_ENTRIES_COUNT = 9
TAB_SEPARATOR = '__'
Expand Down
5 changes: 2 additions & 3 deletions bin/autojump.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ fi


# set homebrew installation paths
local brew_prefix=${BREW_PREFIX:-$(brew --prefix)}
if [[ -d "${brew_prefix}/share/zsh/site-functions" ]]; then
fpath=("${brew_prefix}/share/zsh/site-functions" ${fpath})
if command -v brew &>/dev/null && [[ -d "$(brew --prefix)/share/zsh/site-functions" ]]; then
fpath=("$(brew --prefix)/share/zsh/site-functions" ${fpath})
fi


Expand Down

0 comments on commit b2f243e

Please sign in to comment.