1
0
mirror of https://github.com/wting/autojump synced 2024-09-29 22:40:46 +00:00
wting_autojump/autojump.bash

15 lines
541 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
2009-03-03 11:09:36 +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 }