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

24 lines
567 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-27 15:54:55 +00:00
# TODO
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
2009-03-27 15:54:55 +00:00
function preexec() {
autojump -a "$(pwd -P)"&)>/dev/null
}
# OK
2009-03-03 11:09:36 +00:00
alias jumpstat="autojump --stat"
2009-03-08 14:37:42 +00:00
function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";fi }