mirrored from git://git.code.sf.net/p/zsh/code
-
Notifications
You must be signed in to change notification settings - Fork 454
/
Copy pathcompinstall
2013 lines (1774 loc) · 60.2 KB
/
compinstall
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Configure the completion system.
emulate -L zsh
setopt extendedglob
zmodload -F zsh/files b:zf_ln || return 1
local key
local compcontext=-default-
__ci_tidyup() {
unfunction -m __ci_\* 2>/dev/null
unfunction compinstall
autoload -Uz compinstall
}
__ci_newline() {
read -k \
key"?${1:---- Hit newline to continue or \`q' to exit without saving --- }"
print
if [[ $key = [qQ] ]]; then
print "compinstall aborted."
__ci_tidyup
return 1
else
return 0
fi
}
typeset startline='# The following lines were added by compinstall'
typeset endline='# End of lines added by compinstall'
typeset ifile line fpath_line compinit_args opt detect basic line2
typeset -A styles
typeset match mbegin mend warn_unknown warn_old warn_comment output
integer lines_found
while getopts "do" opt; do
case $opt in
(d)
# Detect an existing compinstall setup.
detect=1
;;
(o)
# Output basic setup information only.
basic=1
;;
esac
done
#
# Check the user's .zshrc, if any.
#
# This relies on the stuff we find being only minimally edited from
# the stuff we originally saved. A better way of doing this would
# almost certainly be to use the style mechanism directly: save the
# current styles in a variable, delete all styles, read in and evaluate
# any styles found, manipulate styles directly using zstyle, write out
# using zstyle -L, and if necessary restore the original styles. One
# day I may even do that.
#
__ci_test_ifile() {
[[ -f $1 ]] && grep "$endline" $1 >/dev/null 2>&1
}
local foundold=false
if zstyle -s :compinstall filename ifile &&
__ci_test_ifile $ifile; then
foundold=true
else
ifile=${ZDOTDIR:-~}/.zshrc
if __ci_test_ifile ${ZDOTDIR:-~}/.compinstall; then
ifile=${ZDOTDIR:-~}/.compinstall
foundold=true
elif __ci_test_ifile $ifile; then
foundold=true
fi
fi
if [[ -n $detect ]]; then
__ci_tidyup
[[ $foundold = true ]]
return
fi
__ci_output() {
print -r "$startline"
[[ -n $output ]] && print -r "$output"
if [[ -n $ifile ]]; then
line="zstyle :compinstall filename ${(qq)ifile}"
print -r "$line"
eval "$line"
fi
[[ -n $fpath_line ]] && print -r "$fpath_line"
print -r "
autoload -Uz compinit
compinit${compinit_args:+ $compinit_args}"
print -r "$endline"
}
if [[ -n $basic ]]; then
__ci_output
__ci_tidyup
return
fi
local newifile=$ifile
if [[ $foundold = true ]]; then
if [[ $newifile != [~/]* ]]; then
newifile=${ZDOTDIR:-~}/$newifile
print "[Existing completion definition file is not absolute path:
updating to $newifile]"
fi
print "I have found completion definitions in $newifile.
If you want me to read these, just hit return. Otherwise, edit the file
name to look for definitions somewhere else, or delete the whole line
in order not to use existing definitions."
vared -ch -p 'file> ' newifile
if [[ -n $newifile && $newifile != [/~]* ]]; then
newifile=$PWD/$newifile
print "[Not absolute path: updating to $newifile]"
fi
[[ -z $newifile || ! -f $newifile ]] && foundold=false
else
print "I haven't found any existing completion definitions.
If you have some already defined by compinstall, edit the name of the
file where these can be found. Note that this will only work if they
are exactly the form in which compinstall inserted them. If you leave
the line as it is, or empty, I won't search."
while true; do
vared -ch -p 'file> ' newifile || break
if [[ -n $newifile && $newifile != [/~]* ]]; then
newifile=$PWD/$newifile
print "[Not absolute path: updating to $newifile]"
fi
if [[ -n $newifile && $ifile != $newifile ]]; then
if __ci_test_ifile $newifile; then
foundold=true
break
fi
print "I couldn't find any definitions there. Edit a new filename, or
leave the line blank to ignore it."
else
break
fi
done
fi
ifile=${~newifile}
if [[ $foundold = true ]]; then
sed -n "/^[ ]*$startline/,/^[ ]*$endline/p" $ifile |
# We can't use the default read behaviour to handle continuation lines
# since it messes up internal backslashes.
while read -r line; do
# detect real continuation backslashes by checking there are an
# odd number together. i think this is reliable since the only
# other way of quoting a backslash involves following it with
# a closing quote.
while [[ $line = *\\ ]]; do
line2=${(M)line%%\\##}
(( ${#line2} & 1 )) || break
read -r line2 || break
line="${line[1,-2]}$line2"
done
(( lines_found++ ))
if [[ $line = *'$fpath'* ]]; then
fpath_line=$line
if [[ $line != *\) ]]; then
while read -r line; do
fpath_line="$fpath_line
$line"
[[ $line = *\) ]] && break
done
fi
elif [[ $line = (#b)[[:blank:]]#zstyle[[:blank:]]##(\'[^\']#\')\
[[:blank:]]##([^[:blank:]]##)[[:blank:]]##(*) ]]; then
styles[$match[2]]="${styles[$match[2]]:+${styles[$match[2]]}
}${(Q)match[1]}
${match[3]}"
elif [[ $line = [[:blank:]]#compconf* ]]; then
warn_old=1
elif [[ $line == $startline || $line == $endline ]]; then
# no-op
elif [[ $line = [[:blank:]]#\#* ]]; then
warn_comment=1
elif [[ $line = [[:blank:]]#compinit[[:blank:]]##(#b)([^[:blank:]]*) ]]
then
compinit_args=$match[1]
elif [[ $line != [[:blank:]]# &&
$line != [[:blank:]]#'autoload '*' compinit' &&
$line != [[:blank:]]#compinit &&
$line != [[:blank:]]#zstyle[[:blank:]]#:compinstall* ]]; then
warn_unknown="${warn_unknown:+$warn_unknown
}$line"
fi
done
fi
#
# Print warnings about what we found in .zshrc.
#
if [[ -n $warn_old ]]; then
print "\
WARNING: your configuration appears to contain commands for the 3.1.6
configuration system. You will have to reconfigure from scratch and the
existing configuration commands will be overwritten. If you wish to preserve
the old commands, you should quit, copy them somewhere else, then rerun
compinstall. Sorry."
elif [[ -n $warn_unknown ]]; then
print "\
WARNING: your configuration contains bits not understood by compinstall,
which will not be retained (shown below). If you wish to retain these, you
should quit, copy them somewhere else, and then rerun compinstall.
$warn_unknown"
elif [[ -n $warn_comment ]]; then
print "All the comments in your configuration section will be lost.
If you want to keep them, you should copy them somewhere else first."
elif (( ! $lines_found )); then
print "Starting a new completion configuration from scratch."
if [[ -n $ifile && ! -d $ifile ]]; then
print -n "This will be "
if [[ ! -f $ifile ]]; then
print "written to the new file $ifile."
elif [[ ! -w $ifile ]]; then
print "written to the file ~/.compinstall for copying to $ifile."
ifile=$HOME/.compinstall
else
print "appended to the file $ifile. It is up to you to ensure
that these lines are actually executed. They will not be if your .zshrc
usually returns before the end."
fi
fi
fi
print "Note that you will be given a chance to save the new setup
somewhere else at the end."
__ci_newline || return 1
typeset d compdir subdirs lines
#
# Make sure we have the completion functions in $fpath.
#
__ci_set_compdir() {
for d in $*; do
# If we find both the functions more than once, assume the later
# one is the standard set.
if [[ -f $d/compinit && -f $d/compdump ]]; then
compdir=$d
fi
done
}
__ci_set_compdir $fpath
if [[ -d $compdir/Base/Core ]]; then
subdirs=2
elif [[ -d $compdir/Base ]]; then
subdirs=1
### compdir=${compdir:h}
fi
if [[ -z $compdir ]]; then
# Start up a new zsh and get its default fpath. If some swine has
# tinkered with this in /etc/zshenv we're out of luck.
lines=(${(f)"$(zsh -fc 'print -l $ZSH_VERSION $fpath')"})
line=$lines[1]
shift lines
# If the zsh in that path isn't right, maybe the user's shell is elsewhere.
if [[ $line != $ZSH_VERSION && -x $SHELL ]]; then
lines=(${(f)"$($SHELL -fc 'print -l $ZSH_VERSION $fpath' 2>/dev/null)"})
line=$lines[1]
shift lines
fi
if [[ $line != $ZSH_VERSION ]]; then
print "Hmmm, the zsh in your path is not what's running, nor is \$SHELL.
That's bad.
"
fi
__ci_set_compdir $lines
if [[ -n $compdir ]]; then
print "\
I've found the completion directories and will add them to your \$fpath,
but they should already be there at shell startup, so something (probably
an unconditional assignment in a startup file) is taking them out. You
might want to check this, although what I'm doing should work."
if [[ -n $fpath_line ]]; then
print "\
What's more, there is already an \$fpath assignment in your completion
setup. This gives me cause for concern. I will override this, but don't
be surprised if it doesn't go according to plan. If you have not
initialised completion in this shell, you should do so, then run
compinstall again."
fi
fi
if [[ $subdirs = 2 ]]; then
fpath_line=($compdir/[A-Z]*/[A-Z]*)
fpath_line="fpath=($fpath ${(F)fpath_line})"
elif [[ -n $subdirs ]]; then
fpath_line=($compdir/[A-Z]*)
fpath_line="fpath=($fpath ${(F)fpath_line})"
fi
else
if [[ $subdirs = 2 ]]; then
print "Completion directories $compdir/*/*
are already in your \$fpath, good."
elif [[ -n $subdirs ]]; then
print "Completion directories $compdir/*
are already in your \$fpath, good."
else
print "Completion directory $compdir
is already in your \$fpath, good."
fi
if [[ -n $fpath_line ]]; then
print "I shall keep the existing \$fpath=( ... ) assignment."
fi
fi
if [[ -z $compdir ]]; then
print "\
The zsh in your path doesn't seem to have completion directories in the
function autoload path (\$fpath). This suggests the shell wasn't installed
for completion. If you want to use it, you will need to locate all the
completion functions yourself and install them in your \$fpath. I will
continue, but don't expect this to have much effect until you do.
If you are planning to continue using the old compctl system for
completion, compinstall won't do you any good anyway."
fi
__ci_newline || return 1
#
# Code for changing styles
#
typeset defcontext=":completion:*"
typeset curcontext=$defcontext
#
# Utility functions
#
#
# Get the style $1 for $curcontext into $2.
#
__ci_get_this_style() {
typeset -A tassoc
local style=$1 scalar=$2
tassoc=(${(f)styles[$style]})
eval "$scalar=\${tassoc[\$curcontext]}"
}
#
# Set the style $1 for $curcontext using scalar $2 for the value for this
# context. If $2 is null, delete the context (this may not be correct for
# all styles). Don't do any extra quotation.
# $2 gives the name of the scalar for symmetry with __ci_get_this_style.
#
__ci_set_this_style() {
local style=$1 scalar=$2 k
typeset -A tassoc
tassoc=(${(f)styles[$style]})
if [[ -n ${(P)scalar} ]]; then
tassoc[$curcontext]=${(P)scalar}
else
unset "tassoc[$curcontext]"
fi
styles[$style]=
for k in ${(ko)tassoc}; do
styles[$style]="${styles[$style]:+$styles[$style]
}$k
${tassoc[$k]}"
done
}
#
# Functions displaying menus
#
__ci_change_context() {
clear
print "\
*** compinstall: change context ***
The context tells the completion system under what circumstances your
value will be used. It has this form:
:completion:<function-name>:<completer>:<command>:<argument>:<tag>
See the documentation for more detail on each of these components. The
default context \`$defcontext' matches everywhere in completion, unless you
define a more specific pattern which matches the completion context being
used. \`More specific' means either a string instead of a pattern, or a
longer pattern instead of a shorter pattern.
Edit a new context, or leave the line blank to reset the context to the
default value. Note that you do not require quotes around the context,
which will automatically be added later. Line editing and history are
available.
"
vared -eh -p 'context> ' curcontext
[[ -z $curcontext ]] && curcontext=$defcontext
}
__ci_toggle_completer() {
# used locally within __ci_do_completers
if [[ -n $completers[$1] ]]; then
completers[$1]=
else
completers[$1]=1
fi
}
__ci_do_minor_completer_options() {
# Set the options for the minor completers.
local key cond word olist omenu moriginal aspace tmparr
__ci_get_this_style condition cond
[[ -n $cond ]] && cond=${(Q)cond}
__ci_get_this_style word word
__ci_get_this_style old-list olist
__ci_get_this_style old-menu omenu
__ci_get_this_style match-original moriginal
__ci_get_this_style add-space aspace
while true; do
# insert-unambiguous can be handled somewhere else.
clear
print "\
*** compinstall: minor completer options ***
Current context: $curcontext
l. Set options for _list: condition for delay and comparison.
o. Set options for _oldlist: when to keep old list.
m. Set options for _match: whether to assume a \`*' at the cursor.
p. Set options for _prefix: whether to add a space before the suffix.
q. Return to the previous menu without saving.
0. Done setting completer options.
"
read -k key'?--- Hit selection --- '
print
[[ $key = 0 ]] && break
case $key in
[lL]) print "\
You can set a condition under which the _list completer will delay completion
until the second keypress. It should evaluate to a number; a non-zero value
turns this behaviour on. It can include parameters, in particular NUMERIC
to refer to a numeric argument. For example, \`NUMERIC != 1' forces the
delay unless you give an argument 1 to the command. Leave it blank to
assume the condition is true."
vared -eh -c -p 'condition> ' cond
print -n "
_list will usually compare the contents of the entire line with its previous
contents to decided if it has been changed since the last keypress. You
can instead perform this comparison on just the current word, ignoring
the rest of the command line. Do you want to do this? (y/n) [n] "
word=
read -q key && word=true
print
;;
[oO]) print "\
_oldlist can keep a generated completion list for reshowing in the usual
way, e.g. with ^D, even if the list was generated by some special completion
command. The default behaviour of _oldlist is to show this list if it was
not already visible, otherwise to generate the standard completion listing,
but you can force it always to be shown, or make it never shown.
Alternatively, you can specify a list of completers for which _oldlist will
be used. Choose:
d. Default behaviour.
a. Always show old list.
n. Never show old list.
s. Specify a list of completers.
"
while true; do
read -k key'?--- Hit selection --- '
print
case $key in
[dD]) olist=
;;
[aA]) olist=always
;;
[nN]) olist=never
;;
[sS]) olist=
tmparr=(_complete _approximate _correct _match _expand)
while true; do
clear
print "\
*** compinstall: choosing completers to have _oldlist behaviour ***
Type any of:
1. _complete
2. _approximate
3. _correct
4. _match
5. _expand
or 0 to end, or - to delete the last choice."
if [[ -n $olist ]]; then
print "\
Current choices:
$olist"
fi
read -k key'?--- Hit selection --- '
print
case $key in
0) break
;;
-) olist=(${olist[1,-2]})
;;
[1-5]) olist=($olist $tmparr[$key])
;;
esac
done
;;
*) print "Type one of d, a, n or s."
continue
;;
esac
break
done
print -n "
_oldlist can keep the old completion list for use in menu completion, e.g. by
repeatedly hitting tab, even if the list was generated by some special
completion command. This is the default behaviour of _oldlist, but
you can turn it off, so that hitting tab would use the standard completion
list.
Do you want to turn it off? (y/n) [n] "
omenu=
read -q key && omenu=false
;;
[mM]) print "\
The _match completer will usually assume there is a \`*' at the cursor
position when trying pattern matches. For example, \`f*n<TAB>e' would
be able to complete to \`filename', not just to patterns matching \`f*ne'.
(Note that this assumes you have the option COMPLETE_IN_WORD set, else all
completion takes place at the end of the word.) You can tell _match not
to assume there is a \`*', or to try first without the \`*', then with it.
Type one of:
a. Always assume \`*' at cursor position.
n. Never assume \`*' at cursor position.
w. Try without the \`*', then with it if that fails."
while true; do
read -k key'?--- Hit selection --- '
print
case $key in
a) moriginal=
;;
n) moriginal=only
;;
w) moriginal=both
;;
*) print "Type one of a, n or w."
continue
;;
esac
break
done
;;
[pP]) print -n "\
The _prefix completer completes only what is behind the cursor, ignoring
completely what is after, even if there is no space at the cursor position.
However, you can force it to add a space between the resulting completion
and the part ignored. For example, \`f<TAB>bar' might expand to \`filebar'
without this, and to \`file bar' with it. Do wish _prefix to add the
space? (y/n) [n] "
aspace=
read -q key && aspace=true
;;
[qQ]) return 1
;;
esac
done
[[ -n $cond && $cond != [[:alnum:]]## ]] && cond=${(qq)cond}
__ci_set_this_style condition cond
__ci_set_this_style word word
__ci_set_this_style old-list olist
__ci_set_this_style old-menu omenu
__ci_set_this_style match-original moriginal
__ci_set_this_style add-space aspace
return 0
}
__ci_do_minor_completers() {
# Set the minor completers not handled by __ci_do_completers.
# Called within __ci_do_completers, so inherits the environment.
# It's only divided off to keep the menus short.
local key
while true; do
clear
print "\
*** compinstall: minor completer menu ***
Current context: $curcontext
The following completers are available. Those marked \`(*)' are already
set for the context shown above. Note none of these are required for
normal completion behaviour.
1. ${${completers[_ignored]:+(*)}:- } _ignored: $ckeys[_ignored]
2. ${${completers[_list]:+(*)}:- } _list: $ckeys[_list]
3. ${${completers[_oldlist]:+(*)}:- } _oldlist: $ckeys[_oldlist]
4. ${${completers[_match]:+(*)}:- } _match: $ckeys[_match]
5. ${${completers[_prefix]:+(*)}:- } _prefix: $ckeys[_prefix]
o. Set options for the completers above.
q. Return without saving.
0. Done setting minor completers.
"
read -k key'?--- Hit selection --- '
print
[[ $key = 0 ]] && break
case $key in
1) __ci_toggle_completer _ignored
if [[ -n $completers[_ignored] ]]; then
print "\
I am inserting the \`ignored' completer immediately after normal
completion. You can move it later in the list by hand, if you prefer, so
that ignored completions are only used after, for example, approximations.
To do this, edit $ifile, look for the zstyle ... completers line, and
move \`_ignored' to where you want it. This will be retained if you use
compinstall again provided you don't go into the completers menu.
"
# TODO: we could be more careful about keeping the user's
# order, particularly with multiple completers.
read -k key'?--- Hit any key to continue --- '
print
fi
;;
2) __ci_toggle_completer _list
;;
3) __ci_toggle_completer _oldlist
;;
4) __ci_toggle_completer _match
;;
5) __ci_toggle_completer _prefix
;;
o) __ci_do_minor_completer_options
;;
q) return 1
;;
esac
done
return 0
}
__ci_do_completer_options() {
# Set options for the main completers; called from __ci_do_completers.
local maxe errors prompt glob subst compl cond
__ci_get_this_style max-errors errors
__ci_get_this_style prompt prompt
[[ -n $prompt ]] && prompt=${(Q)prompt}
__ci_get_this_style glob glob
[[ -n $glob ]] && glob=${(Q)glob}
__ci_get_this_style substitute subst
[[ -n $subst ]] && subst=${(Q)subst}
__ci_get_this_style completions compl
[[ -n $compl ]] && compl=${(Q)compl}
while true; do
clear
print "\
*** compinstall: completer options ***
Current context: $curcontext
The following options are available. Note that these require the relevant
completers to be present, as set in the menu above this one.
a. Set options for approximation or correction.
e. Set options for expansion.
q. Return without saving.
0. Done setting options.
"
read -k key'?--- Hit selection --- '
print
# We handle approximation and correction together to avoid having
# to be too particular about context.
case $key in
a) clear
print "\
Approximation and correction can correct the errors in what you have typed,
up to a maximum number of errors which you can specify. Each \`error'
is the omission of a character, the addition of a superfluous character,
the substitution of one character by an incorrect one, or transposition of
two different characters.
Current context: $curcontext
To have different values for approximation and correction, you should
change the context appropriately. For approximation, use
\`:completion:*:approximate:*' and for correction use
\`:completion:*:correct:*'.
Enter maximum number of errors allowed:
"
maxe=
while true; do
vared -eh -c -p "number> " maxe
[[ $maxe = [[:digit:]]## ]] && break
print "Please enter a number"
maxe=
done
while true; do
print "\nSelect behaviour of numeric prefix.
1. Numeric prefix is not used by approximation or completion.
2. Numeric prefix, if provided, gives max number of errors allowed,
replacing the number you just typed for that one completion.
3. Numeric prefix, if provided, prevents approximation or completion
from taking place at all for that one completion.
"
read -k -- key'?--- Hit selection --- '
print
[[ $key = [123] ]] || continue
case $key in
2) maxe="$maxe numeric"
;;
3) maxe="$maxe not-numeric"
;;
esac
print "
You can edit a prompt which will appear above lists of corrections. The
string \`%e' inside the prompt will be replaced with the number of errors
found. Leave blank for no prompt. Quotation marks will be added
automatically."
vared -eh -c -p "prompt> " prompt
break
done
errors=$maxe
;;
e) while true; do
clear
print "\
The _expand completer can be tuned to perform any of globbing (filename
generation), substitution (anything with a \`\$' or backquote), or
normal completion (which is useful for inserting all possible completions
into the command line). For each feature, a 1 turns it on, while a 0 turns
it off; if the feature is unset, that expansion will *not* be performed.
You can also give more complicated mathematical expressions, which can use
the parameter NUMERIC to refer to the numeric argument. For example, the
expression \`NUMERIC == 2' means that the expansion takes effect if you
type ESC-2 (Emacs mode) or 2 (Vi command mode) before the expansion.
Quotes will be added automatically as needed.
g. Set condition to perform globbing: ${glob:-unset}
s. Set condition to perform substitution: ${subst:-unset}
c. Set condition to perform completion: ${compl:-unset}
0. Done setting conditions (will not be saved until you leave options)
"
read -k key'?--- Enter selection --- '
print
case $key in
g) vared -eh -c -p 'globbing condition> ' glob
;;
s) vared -eh -c -p 'substitution condition> ' subst
;;
c) vared -eh -c -p 'completion condition> ' compl
;;
esac
[[ $key = 0 ]] && break
done
;;
q) return 1
;;
esac
[[ $key = 0 ]] && break
done
__ci_set_this_style max-errors errors
[[ -n $prompt ]] && prompt=${(qq)prompt}
__ci_set_this_style prompt prompt
[[ -n $glob && $glob != [[:alnum:]]## ]] && glob=${(qq)glob}
__ci_set_this_style glob glob
[[ -n $subst && $subst != [[:alnum:]]## ]] && subst=${(qq)subst}
__ci_set_this_style substitute subst
[[ -n $compl && $compl != [[:alnum:]]## ]] && compl=${(qq)compl}
__ci_set_this_style completions compl
key=
return 0
}
__ci_do_completers() {
# Set the completers for the current context.
# This is mostly done via a series of toggles.
typeset -A completers ckeys
local c clist newc
__ci_get_this_style completer newc
for c in ${=newc}; do
completers[$c]=1
done
if (( ${#completers} == 0 )); then
completers[_complete]=1
completers[_ignored]=1
fi
clist=(_list _oldlist _menu _expand _complete _ignored
_match _correct _approximate _prefix)
# TODO: these are a bit brief, so could provide some more detailed help.
ckeys=(_complete 'Basic completion.'
_approximate
'Approximate completion: completion with correction of existing word.'
_correct
'Correction: correct existing word, no completion.'
_expand
'Expansion: use globbing and parameter substitution, if possible.'
_ignored
'Use patterns that were previously ignored if no matches so far.'
_list
'Only list matches until the second time you hit TAB.'
_oldlist
'Keep matches generated by special completion functions.'
_match
'If completion fails, retry with pattern matching.'
_prefix
'If completion fails, retry ignoring the part after the cursor.'
)
# TODO: You'll need to handle the bindkey to make _expand work.
# TODO: _prefix completer should make sure completeinword is set.
while true; do
clear
print "\
*** compinstall: completer menu ***
Current context: $curcontext
The following completers are available. Those marked \`(*)' are already
set for the context shown above. If none are selected, the completers will
not be set for this context at all.
1. ${${completers[_complete]:+(*)}:- } $ckeys[_complete]
2. ${${completers[_approximate]:+(*)}:- } $ckeys[_approximate]
3. ${${completers[_correct]:+(*)}:- } $ckeys[_correct]
4. ${${completers[_expand]:+(*)}:- } $ckeys[_expand]
o. Set options for the completers above.
m. Set completers that modify the behaviour of the four main ones above.
q. Return without saving.
0. Done setting completers.
"
read -k key'?--- Hit selection --- '
print
case $key in
1) __ci_toggle_completer _complete
;;
2) __ci_toggle_completer _approximate
;;
3) __ci_toggle_completer _correct
;;
4) __ci_toggle_completer _expand
;;
[mM]) __ci_do_minor_completers || return
continue
;;
[oO]) __ci_do_completer_options || return
continue
;;
q) return 1
;;
esac
[[ $key = 0 ]] && break
done
newc=
for c in $clist; do
[[ -n $completers[$c] ]] && newc="${newc:+$newc }$c"
done
[[ -z $newc ]] && newc="''"
__ci_set_this_style completer newc
}
__ci_toggle_matcher() {
# Toggle on/off the matcher in array $1 for element $2
if [[ ${${(P)1}[$2]} = ' ' ]]; then
# toggle on
eval "${1}[$2]=$2"
if [[ $1 = n* ]]; then
# no matcher turned on, turn off the others
c_list[$2]=' '
C_list[$2]=' '
p_list[$2]=' '
s_list[$2]=' '
else
# something else turned on, turn off no matcher
n_list[$2]=' '
fi
return 0
else
# toggle off
eval "${1}[$2]=' '"
if [[ $c_list[$2] == ' ' && $C_list[$2] == ' ' && \
$p_list[$2] == ' ' && $s_list[$2] == ' ' ]]; then
a_or_r[$2]=' '
fi
return 1
fi
}
__ci_do_matchers() {
# Set matchers via the matcher-list style.
# We just offer a pre-programmed set of possible matchers, but these
# cover the most common usages for matchers in a general context.
# More specific use of matchers is usually covered by completion functions.
local mlist m_ci m_pw m_sub c_list C_list p_list s_list pw_seps key key2 elt
local pw_dstar a_or_r i
integer eltcnt lastnz
__ci_get_this_style matcher-list mlist
# $mlist is the once and future list of matchers. We don't quote it
# until the end; the eval effectively does de-quoting.
eval "mlist=($mlist)"
# ?_list say whether the four possible matchers are set for passes 1,
# 2, 3, 4, in an easy-to-read manner, i.e. the Nth part of the string
# is one of N (on) or space (off).
a_or_r=" " # replace by default
n_list=" " # null completion, i.e. standard
c_list=" " # case match one way
C_list=" " # case match both ways
p_list=" " # partial word completion
s_list=" " # substring completion
# $pw_seps gives the separators used for partial-word completion
# by element of the matcher list; these can be edited separately.
pw_seps=('._-' '._-' '._-' '._-')
pw_dstar=('' '' '' '')
# See what's in the matcher initially. If these have been edited,
# we're in trouble, but that's pretty much true of everything.
for (( eltcnt = 1; eltcnt <= $#mlist; eltcnt++ )); do
[[ $mlist[eltcnt] == "+"* ]] && a_or_r[$eltcnt]='+'
[[ -z $mlist[$eltcnt] ]] && n_list[$eltcnt]=$eltcnt
# Accept the old form of lower/upper correspondence, but we'll
# output the new one instead.
[[ $mlist[$eltcnt] = *"m:{a-z}={A-Z}"* ]] && c_list[$eltcnt]=$eltcnt
[[ $mlist[$eltcnt] = *"m:{[:lower:]}={[:upper:]}"* ]] &&
c_list[$eltcnt]=$eltcnt
[[ $mlist[$eltcnt] = *"m:{a-zA-Z}={A-Za-z}"* ]] && C_list[$eltcnt]=$eltcnt
[[ $mlist[$eltcnt] = *"m:{[:lower:][:upper:]}={[:upper:][:lower:]}"* ]] &&
C_list[$eltcnt]=$eltcnt
# For partial word stuff, we use backreferences to find out what
# the set of separators was.
if [[ $mlist[$eltcnt] = (#b)*"r:|["([^\]]#)"]=*"#" r:|=*"* ]]; then