about summary refs log tree commit diff
path: root/Completion/Commands/_correct_filename
blob: 582555587f4693dab3c3b57eee7414f2f5b7a473 (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
38
39
#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 -U -i "$IPREFIX" "$file"
    [[ -n "$compstate[insert]" ]] && compstate[insert]=menu
  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 -i "$IPREFIX" -U "${trylist[@]}"
  [[ -n "$compstate[insert]" ]] && compstate[insert]=menu
else
  print "${trylist[@]}"
fi