mirror of
https://github.com/wting/autojump
synced 2026-03-02 03:49:26 +00:00
remove _j() as it was never used to begin with.
This commit is contained in:
6
bin/_j
6
bin/_j
@@ -1,6 +0,0 @@
|
||||
#compdef j
|
||||
cur=${words[2, -1]}
|
||||
|
||||
autojump --complete ${=cur[*]} | while read i; do
|
||||
compadd -U "$i";
|
||||
done
|
||||
@@ -34,7 +34,7 @@ import re
|
||||
import shutil
|
||||
from tempfile import NamedTemporaryFile
|
||||
|
||||
VERSION = 'release-v21.4.0'
|
||||
VERSION = 'release-v21.4.1'
|
||||
MAX_KEYWEIGHT = 1000
|
||||
MAX_STORED_PATHS = 1000
|
||||
COMPLETION_SEPARATOR = '__'
|
||||
|
||||
@@ -38,7 +38,6 @@ preexec_functions+=autojump_preexec
|
||||
|
||||
function j {
|
||||
# Cannot use =~ due to MacPorts zsh v4.2, see issue #125.
|
||||
echo "j()"
|
||||
if [[ ${@} == -* ]]; then
|
||||
autojump ${@}
|
||||
return
|
||||
@@ -56,7 +55,6 @@ function j {
|
||||
}
|
||||
|
||||
function jc {
|
||||
echo "j()"
|
||||
if [[ ${@} == -* ]]; then
|
||||
j ${@}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user