blob: edf1c65c207bc58962b9e00a68549586b2e6e741 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#defkeycomp complete-word \C-xc
# Function to correct a filename. Can be used as a completion widget,
# or as a function in its own right, in which case it will print the
# corrected filename to standard output.
#
# You can adapt max_approx to the maximum number of mistakes
# which are allowed in total.
emulate -LR zsh
setopt extendedglob
local file="$PREFIX$SUFFIX" trylist
integer approx max_approx=6
[[ -z $WIDGET ]] && file=$1
if [[ -e "$file" ]]; then
if [[ -n $WIDGET ]]; then
compadd "$file"
else
print "$file"
fi
return
fi
for (( approx = 1; approx <= max_approx; approx++ )); do
trylist=( (#a$approx)"$file"(N) )
(( $#trylist )) && break
done
(( $#trylist )) || return 1
if [[ -n $WIDGET ]]; then
compadd -U "${trylist[@]}"
else
print "${trylist[@]}"
fi
|