1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
wting_autojump/autojump.bash

18 lines
700 B
Bash
Raw Normal View History

2009-02-19 21:09:59 +00:00
#This shell snippet sets the prompt command and the necessary aliases
#Only excecute if the shell is bash and it is interactive
2009-02-23 08:36:13 +00:00
if [ "$BASH_VERSION" ] && [ -n "$PS1" ]; then
2009-02-19 21:09:59 +00:00
_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)"'
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 }
fi