mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
combining cd && ls into j function
This commit is contained in:
parent
1bc3440968
commit
f3d00f0671
@ -47,4 +47,4 @@ if [[ ! $PROMPT_COMMAND =~ autojump ]]; then
|
||||
export PROMPT_COMMAND="${PROMPT_COMMAND:-:} ; $AUTOJUMP"
|
||||
fi
|
||||
alias jumpstat="autojump --stat"
|
||||
function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";else false; fi }
|
||||
function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path" && ls;else false; fi }
|
||||
|
Loading…
Reference in New Issue
Block a user