Ver código fonte

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

pull/125/head
William Ting 12 anos atrás
pai
commit
6a16a7ec67
5 arquivos alterados com 12 adições e 6 exclusões
  1. +3
    -1
      README.md
  2. +1
    -1
      bin/_j
  3. +2
    -2
      bin/autojump.bash
  4. +3
    -1
      docs/autojump.1
  5. +3
    -1
      docs/body.md

+ 3
- 1
README.md Ver arquivo

@ -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
- 1
bin/_j Ver arquivo

@ -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
- 2
bin/autojump.bash Ver arquivo

@ -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}")

+ 3
- 1
docs/autojump.1 Ver arquivo

@ -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

+ 3
- 1
docs/body.md Ver arquivo

@ -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

Carregando…
Cancelar
Salvar