update shell scripts to use new tab completion argument --complete, update docs with new --preserve option

pull/125/head
William Ting 12 years ago
parent ad10e13c4a
commit 6a16a7ec67

@ -114,6 +114,8 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.
-a, --add DIR manually add path to database
--preserve prevent key weight decay over time
--stat show database entries and their key weights
--version show version information and exit
@ -123,7 +125,7 @@ INTERNAL OPTIONS
-b, --bash enclose directory with quotes to prevent errors
--completion prevent key weight decay over time
--complete used for tab completion
ADVANCED USAGE
--------------

@ -1,6 +1,6 @@
#compdef j
cur=${words[2, -1]}
autojump --completion ${=cur[*]} | while read i; do
autojump --complete ${=cur[*]} | while read i; do
compadd -U "$i";
done

@ -2,7 +2,7 @@ _autojump()
{
local cur
cur=${COMP_WORDS[*]:1}
comps=$(autojump --bash --completion $cur)
comps=$(autojump --bash --complete $cur)
while read i
do
COMPREPLY=("${COMPREPLY[@]}" "${i}")
@ -18,7 +18,7 @@ _autojump_files()
local cur
#cur=${COMP_WORDS[*]:1}
cur=${COMP_WORDS[COMP_CWORD]}
comps=$(autojump --bash --completion $cur)
comps=$(autojump --bash --complete $cur)
while read i
do
COMPREPLY=("${COMPREPLY[@]}" "${i}")

@ -35,6 +35,8 @@ wrapper function.
\f[C]
-a,\ --add\ DIR\ \ \ \ \ \ \ manually\ add\ path\ to\ database
--preserve\ \ \ \ \ \ \ \ \ \ prevent\ key\ weight\ decay\ over\ time
--stat\ \ \ \ \ \ \ \ \ \ \ \ \ \ show\ database\ entries\ and\ their\ key\ weights
--version\ \ \ \ \ \ \ \ \ \ \ show\ version\ information\ and\ exit
@ -46,7 +48,7 @@ wrapper function.
\f[C]
-b,\ --bash\ \ \ \ \ \ \ \ \ \ enclose\ directory\ with\ quotes\ to\ prevent\ errors
--completion\ \ \ \ \ \ \ \ prevent\ key\ weight\ decay\ over\ time
--complete\ \ \ \ \ \ \ \ \ \ used\ for\ tab\ completion
\f[]
.fi
.SS ADVANCED USAGE

@ -4,6 +4,8 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.
-a, --add DIR manually add path to database
--preserve prevent key weight decay over time
--stat show database entries and their key weights
--version show version information and exit
@ -12,7 +14,7 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.
-b, --bash enclose directory with quotes to prevent errors
--completion prevent key weight decay over time
--complete used for tab completion
## ADVANCED USAGE

Loading…
Cancel
Save