pull/376/merge
Ashwin Nanjappa 9 months ago committed by GitHub
commit f3400aad1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,14 @@
set -gx AUTOJUMP_SOURCED 1 set -gx AUTOJUMP_SOURCED 1
# set user installation path # Set user installation path
if test -d ~/.autojump begin
set -x PATH ~/.autojump/bin $PATH set --local AUTOJUMP_BIN_PATH ~/.autojump/bin
if test -d $AUTOJUMP_BIN_PATH
# Add to PATH only if autojump not sourced yet
if not contains $AUTOJUMP_BIN_PATH $PATH
set -x PATH $AUTOJUMP_BIN_PATH $PATH
end
end
end end
# Set ostype, if not set # Set ostype, if not set

Loading…
Cancel
Save