mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
15 lines
554 B
Bash
15 lines
554 B
Bash
#This shell snippet sets the prompt command and the necessary aliases
|
|
_autojump()
|
|
{
|
|
local cur
|
|
COMPREPLY=()
|
|
unset COMP_WORDS[0] #remove "j" from the array
|
|
cur=${COMP_WORDS[*]}
|
|
IFS=$'\n' read -d '' -a COMPREPLY < <(autojump --completion "$cur")
|
|
return 0
|
|
}
|
|
complete -F _autojump j
|
|
export PROMPT_COMMAND='(autojump -a "$(pwd -P)"&)>/dev/null'
|
|
alias jumpstat="autojump --stat"
|
|
function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; echo; cd "$new_path";fi }
|