xref: /freebsd-12.1/lib/libedit/filecomplete.c (revision 14eaf444)
1 /*	$NetBSD: filecomplete.c,v 1.40 2016/02/17 19:47:49 christos Exp $	*/
2 
3 /*-
4  * Copyright (c) 1997 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Jaromir Dolecek.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include "config.h"
33 #if !defined(lint) && !defined(SCCSID)
34 __RCSID("$NetBSD: filecomplete.c,v 1.40 2016/02/17 19:47:49 christos Exp $");
35 #endif /* not lint && not SCCSID */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #include <dirent.h>
42 #include <errno.h>
43 #include <fcntl.h>
44 #include <limits.h>
45 #include <pwd.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <unistd.h>
50 
51 #include "el.h"
52 #include "filecomplete.h"
53 
54 static const Char break_chars[] = { ' ', '\t', '\n', '"', '\\', '\'', '`', '@',
55     '$', '>', '<', '=', ';', '|', '&', '{', '(', '\0' };
56 /* Tilde is deliberately omitted here, we treat it specially. */
57 static const Char extra_quote_chars[] = { ')', '}', '*', '?', '[', '$', '\0' };
58 
59 
60 /********************************/
61 /* completion functions */
62 
63 /*
64  * does tilde expansion of strings of type ``~user/foo''
65  * if ``user'' isn't valid user name or ``txt'' doesn't start
66  * w/ '~', returns pointer to strdup()ed copy of ``txt''
67  *
68  * it's the caller's responsibility to free() the returned string
69  */
70 char *
fn_tilde_expand(const char * txt)71 fn_tilde_expand(const char *txt)
72 {
73 #if defined(HAVE_GETPW_R_POSIX) || defined(HAVE_GETPW_R_DRAFT)
74 	struct passwd pwres;
75 	char pwbuf[1024];
76 #endif
77 	struct passwd *pass;
78 	char *temp;
79 	size_t len = 0;
80 
81 	if (txt[0] != '~')
82 		return strdup(txt);
83 
84 	temp = strchr(txt + 1, '/');
85 	if (temp == NULL) {
86 		temp = strdup(txt + 1);
87 		if (temp == NULL)
88 			return NULL;
89 	} else {
90 		/* text until string after slash */
91 		len = (size_t)(temp - txt + 1);
92 		temp = el_malloc(len * sizeof(*temp));
93 		if (temp == NULL)
94 			return NULL;
95 		(void)strncpy(temp, txt + 1, len - 2);
96 		temp[len - 2] = '\0';
97 	}
98 	if (temp[0] == 0) {
99 #ifdef HAVE_GETPW_R_POSIX
100 		if (getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf),
101 		    &pass) != 0)
102 			pass = NULL;
103 #elif HAVE_GETPW_R_DRAFT
104 		pass = getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf));
105 #else
106 		pass = getpwuid(getuid());
107 #endif
108 	} else {
109 #ifdef HAVE_GETPW_R_POSIX
110 		if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0)
111 			pass = NULL;
112 #elif HAVE_GETPW_R_DRAFT
113 		pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf));
114 #else
115 		pass = getpwnam(temp);
116 #endif
117 	}
118 	el_free(temp);		/* value no more needed */
119 	if (pass == NULL)
120 		return strdup(txt);
121 
122 	/* update pointer txt to point at string immedially following */
123 	/* first slash */
124 	txt += len;
125 
126 	len = strlen(pass->pw_dir) + 1 + strlen(txt) + 1;
127 	temp = el_malloc(len * sizeof(*temp));
128 	if (temp == NULL)
129 		return NULL;
130 	(void)snprintf(temp, len, "%s/%s", pass->pw_dir, txt);
131 
132 	return temp;
133 }
134 
135 
136 /*
137  * return first found file name starting by the ``text'' or NULL if no
138  * such file can be found
139  * value of ``state'' is ignored
140  *
141  * it's the caller's responsibility to free the returned string
142  */
143 char *
fn_filename_completion_function(const char * text,int state)144 fn_filename_completion_function(const char *text, int state)
145 {
146 	static DIR *dir = NULL;
147 	static char *filename = NULL, *dirname = NULL, *dirpath = NULL;
148 	static size_t filename_len = 0;
149 	struct dirent *entry;
150 	char *temp;
151 	size_t len;
152 
153 	if (state == 0 || dir == NULL) {
154 		temp = strrchr(text, '/');
155 		if (temp) {
156 			char *nptr;
157 			temp++;
158 			nptr = el_realloc(filename, (strlen(temp) + 1) *
159 			    sizeof(*nptr));
160 			if (nptr == NULL) {
161 				el_free(filename);
162 				filename = NULL;
163 				return NULL;
164 			}
165 			filename = nptr;
166 			(void)strcpy(filename, temp);
167 			len = (size_t)(temp - text);	/* including last slash */
168 
169 			nptr = el_realloc(dirname, (len + 1) *
170 			    sizeof(*nptr));
171 			if (nptr == NULL) {
172 				el_free(dirname);
173 				dirname = NULL;
174 				return NULL;
175 			}
176 			dirname = nptr;
177 			(void)strncpy(dirname, text, len);
178 			dirname[len] = '\0';
179 		} else {
180 			el_free(filename);
181 			if (*text == 0)
182 				filename = NULL;
183 			else {
184 				filename = strdup(text);
185 				if (filename == NULL)
186 					return NULL;
187 			}
188 			el_free(dirname);
189 			dirname = NULL;
190 		}
191 
192 		if (dir != NULL) {
193 			(void)closedir(dir);
194 			dir = NULL;
195 		}
196 
197 		/* support for ``~user'' syntax */
198 
199 		el_free(dirpath);
200 		dirpath = NULL;
201 		if (dirname == NULL) {
202 			if ((dirname = strdup("")) == NULL)
203 				return NULL;
204 			dirpath = strdup("./");
205 		} else if (*dirname == '~')
206 			dirpath = fn_tilde_expand(dirname);
207 		else
208 			dirpath = strdup(dirname);
209 
210 		if (dirpath == NULL)
211 			return NULL;
212 
213 		dir = opendir(dirpath);
214 		if (!dir)
215 			return NULL;	/* cannot open the directory */
216 
217 		/* will be used in cycle */
218 		filename_len = filename ? strlen(filename) : 0;
219 	}
220 
221 	/* find the match */
222 	while ((entry = readdir(dir)) != NULL) {
223 		/* skip . and .. */
224 		if (entry->d_name[0] == '.' && (!entry->d_name[1]
225 		    || (entry->d_name[1] == '.' && !entry->d_name[2])))
226 			continue;
227 		if (filename_len == 0)
228 			break;
229 		/* otherwise, get first entry where first */
230 		/* filename_len characters are equal	  */
231 		if (entry->d_name[0] == filename[0]
232 #if HAVE_STRUCT_DIRENT_D_NAMLEN
233 		    && entry->d_namlen >= filename_len
234 #else
235 		    && strlen(entry->d_name) >= filename_len
236 #endif
237 		    && strncmp(entry->d_name, filename,
238 			filename_len) == 0)
239 			break;
240 	}
241 
242 	if (entry) {		/* match found */
243 
244 #if HAVE_STRUCT_DIRENT_D_NAMLEN
245 		len = entry->d_namlen;
246 #else
247 		len = strlen(entry->d_name);
248 #endif
249 
250 		len = strlen(dirname) + len + 1;
251 		temp = el_malloc(len * sizeof(*temp));
252 		if (temp == NULL)
253 			return NULL;
254 		(void)snprintf(temp, len, "%s%s", dirname, entry->d_name);
255 	} else {
256 		(void)closedir(dir);
257 		dir = NULL;
258 		temp = NULL;
259 	}
260 
261 	return temp;
262 }
263 
264 
265 static const char *
append_char_function(const char * name)266 append_char_function(const char *name)
267 {
268 	struct stat stbuf;
269 	char *expname = *name == '~' ? fn_tilde_expand(name) : NULL;
270 	const char *rs = " ";
271 
272 	if (stat(expname ? expname : name, &stbuf) == -1)
273 		goto out;
274 	if (S_ISDIR(stbuf.st_mode))
275 		rs = "/";
276 out:
277 	if (expname)
278 		el_free(expname);
279 	return rs;
280 }
281 /*
282  * returns list of completions for text given
283  * non-static for readline.
284  */
285 char ** completion_matches(const char *, char *(*)(const char *, int));
286 char **
completion_matches(const char * text,char * (* genfunc)(const char *,int))287 completion_matches(const char *text, char *(*genfunc)(const char *, int))
288 {
289 	char **match_list = NULL, *retstr, *prevstr;
290 	size_t match_list_len, max_equal, which, i;
291 	size_t matches;
292 
293 	matches = 0;
294 	match_list_len = 1;
295 	while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
296 		/* allow for list terminator here */
297 		if (matches + 3 >= match_list_len) {
298 			char **nmatch_list;
299 			while (matches + 3 >= match_list_len)
300 				match_list_len <<= 1;
301 			nmatch_list = el_realloc(match_list,
302 			    match_list_len * sizeof(*nmatch_list));
303 			if (nmatch_list == NULL) {
304 				el_free(match_list);
305 				return NULL;
306 			}
307 			match_list = nmatch_list;
308 
309 		}
310 		match_list[++matches] = retstr;
311 	}
312 
313 	if (!match_list)
314 		return NULL;	/* nothing found */
315 
316 	/* find least denominator and insert it to match_list[0] */
317 	which = 2;
318 	prevstr = match_list[1];
319 	max_equal = strlen(prevstr);
320 	for (; which <= matches; which++) {
321 		for (i = 0; i < max_equal &&
322 		    prevstr[i] == match_list[which][i]; i++)
323 			continue;
324 		max_equal = i;
325 	}
326 
327 	retstr = el_malloc((max_equal + 1) * sizeof(*retstr));
328 	if (retstr == NULL) {
329 		el_free(match_list);
330 		return NULL;
331 	}
332 	(void)strncpy(retstr, match_list[1], max_equal);
333 	retstr[max_equal] = '\0';
334 	match_list[0] = retstr;
335 
336 	/* add NULL as last pointer to the array */
337 	match_list[matches + 1] = NULL;
338 
339 	return match_list;
340 }
341 
342 /*
343  * Sort function for qsort(). Just wrapper around strcasecmp().
344  */
345 static int
_fn_qsort_string_compare(const void * i1,const void * i2)346 _fn_qsort_string_compare(const void *i1, const void *i2)
347 {
348 	const char *s1 = ((const char * const *)i1)[0];
349 	const char *s2 = ((const char * const *)i2)[0];
350 
351 	return strcasecmp(s1, s2);
352 }
353 
354 /*
355  * Display list of strings in columnar format on readline's output stream.
356  * 'matches' is list of strings, 'num' is number of strings in 'matches',
357  * 'width' is maximum length of string in 'matches'.
358  *
359  * matches[0] is not one of the match strings, but it is counted in
360  * num, so the strings are matches[1] *through* matches[num-1].
361  */
362 void
fn_display_match_list(EditLine * el,char ** matches,size_t num,size_t width)363 fn_display_match_list (EditLine *el, char **matches, size_t num, size_t width)
364 {
365 	size_t line, lines, col, cols, thisguy;
366 	int screenwidth = el->el_terminal.t_size.h;
367 
368 	/* Ignore matches[0]. Avoid 1-based array logic below. */
369 	matches++;
370 	num--;
371 
372 	/*
373 	 * Find out how many entries can be put on one line; count
374 	 * with one space between strings the same way it's printed.
375 	 */
376 	cols = (size_t)screenwidth / (width + 1);
377 	if (cols == 0)
378 		cols = 1;
379 
380 	/* how many lines of output, rounded up */
381 	lines = (num + cols - 1) / cols;
382 
383 	/* Sort the items. */
384 	qsort(matches, num, sizeof(char *), _fn_qsort_string_compare);
385 
386 	/*
387 	 * On the ith line print elements i, i+lines, i+lines*2, etc.
388 	 */
389 	for (line = 0; line < lines; line++) {
390 		for (col = 0; col < cols; col++) {
391 			thisguy = line + col * lines;
392 			if (thisguy >= num)
393 				break;
394 			(void)fprintf(el->el_outfile, "%s%-*s",
395 			    col == 0 ? "" : " ", (int)width, matches[thisguy]);
396 		}
397 		(void)fprintf(el->el_outfile, "\n");
398 	}
399 }
400 
401 /*
402  * Complete the word at or before point,
403  * 'what_to_do' says what to do with the completion.
404  * \t   means do standard completion.
405  * `?' means list the possible completions.
406  * `*' means insert all of the possible completions.
407  * `!' means to do standard completion, and list all possible completions if
408  * there is more than one.
409  *
410  * Note: '*' support is not implemented
411  *       '!' could never be invoked
412  */
413 int
fn_complete(EditLine * el,char * (* complet_func)(const char *,int),char ** (* attempted_completion_function)(const char *,int,int),const Char * word_break,const Char * special_prefixes,const char * (* app_func)(const char *),size_t query_items,int * completion_type,int * over,int * point,int * end,const Char * (* find_word_start_func)(const Char *,const Char *),Char * (* dequoting_func)(const Char *),char * (* quoting_func)(const char *))414 fn_complete(EditLine *el,
415 	char *(*complet_func)(const char *, int),
416 	char **(*attempted_completion_function)(const char *, int, int),
417 	const Char *word_break, const Char *special_prefixes,
418 	const char *(*app_func)(const char *), size_t query_items,
419 	int *completion_type, int *over, int *point, int *end,
420 	const Char *(*find_word_start_func)(const Char *, const Char *),
421 	Char *(*dequoting_func)(const Char *),
422 	char *(*quoting_func)(const char *))
423 {
424 	const TYPE(LineInfo) *li;
425 	Char *temp;
426 	Char *dequoted_temp;
427         char **matches;
428 	const Char *ctemp;
429 	size_t len;
430 	int what_to_do = '\t';
431 	int retval = CC_NORM;
432 
433 	if (el->el_state.lastcmd == el->el_state.thiscmd)
434 		what_to_do = '?';
435 
436 	/* readline's rl_complete() has to be told what we did... */
437 	if (completion_type != NULL)
438 		*completion_type = what_to_do;
439 
440 	if (!complet_func)
441 		complet_func = fn_filename_completion_function;
442 	if (!app_func)
443 		app_func = append_char_function;
444 
445 	/* We now look backwards for the start of a filename/variable word */
446 	li = FUN(el,line)(el);
447 	if (find_word_start_func)
448 		ctemp = find_word_start_func(li->buffer, li->cursor);
449 	else {
450 		ctemp = li->cursor;
451 		while (ctemp > li->buffer
452 		    && !Strchr(word_break, ctemp[-1])
453 		    && (!special_prefixes || !Strchr(special_prefixes, ctemp[-1]) ) )
454 			ctemp--;
455 	}
456 
457 	len = (size_t)(li->cursor - ctemp);
458 	temp = el_malloc((len + 1) * sizeof(*temp));
459 	(void)Strncpy(temp, ctemp, len);
460 	temp[len] = '\0';
461 
462 	if (dequoting_func) {
463 		dequoted_temp = dequoting_func(temp);
464 		if (dequoted_temp == NULL)
465 			return retval;
466 	} else
467 		dequoted_temp = NULL;
468 
469 	/* these can be used by function called in completion_matches() */
470 	/* or (*attempted_completion_function)() */
471 	if (point != NULL)
472 		*point = (int)(li->cursor - li->buffer);
473 	if (end != NULL)
474 		*end = (int)(li->lastchar - li->buffer);
475 
476 	if (attempted_completion_function) {
477 		int cur_off = (int)(li->cursor - li->buffer);
478 		matches = (*attempted_completion_function)(
479 		    ct_encode_string(dequoted_temp ? dequoted_temp : temp,
480 		        &el->el_scratch),
481 		    cur_off - (int)len, cur_off);
482 	} else
483 		matches = NULL;
484 	if (!attempted_completion_function ||
485 	    (over != NULL && !*over && !matches))
486 		matches = completion_matches(
487 		    ct_encode_string(dequoted_temp ? dequoted_temp : temp,
488 		        &el->el_scratch), complet_func);
489 
490 	if (over != NULL)
491 		*over = 0;
492 
493 	if (matches) {
494 		int i;
495 		size_t matches_num, maxlen, match_len, match_display=1;
496 
497 		retval = CC_REFRESH;
498 		/*
499 		 * Only replace the completed string with common part of
500 		 * possible matches if there is possible completion.
501 		 */
502 		if (matches[0][0] != '\0') {
503 			char *quoted_match;
504 			if (quoting_func) {
505 				quoted_match = quoting_func(matches[0]);
506 				if (quoted_match == NULL)
507 					goto free_matches;
508 			} else
509 				quoted_match = NULL;
510 			el_deletestr(el, (int) len);
511 			FUN(el,insertstr)(el,
512 			    ct_decode_string(quoted_match ? quoted_match :
513 			        matches[0] , &el->el_scratch));
514 		}
515 
516 		if (what_to_do == '?')
517 			goto display_matches;
518 
519 		if (matches[2] == NULL &&
520 		    (matches[1] == NULL || strcmp(matches[0], matches[1]) == 0)) {
521 			/*
522 			 * We found exact match. Add a space after
523 			 * it, unless we do filename completion and the
524 			 * object is a directory.
525 			 */
526 			FUN(el,insertstr)(el,
527 			    ct_decode_string((*app_func)(matches[0]),
528 			    &el->el_scratch));
529 		} else if (what_to_do == '!') {
530     display_matches:
531 			/*
532 			 * More than one match and requested to list possible
533 			 * matches.
534 			 */
535 
536 			for(i = 1, maxlen = 0; matches[i]; i++) {
537 				match_len = strlen(matches[i]);
538 				if (match_len > maxlen)
539 					maxlen = match_len;
540 			}
541 			/* matches[1] through matches[i-1] are available */
542 			matches_num = (size_t)(i - 1);
543 
544 			/* newline to get on next line from command line */
545 			(void)fprintf(el->el_outfile, "\n");
546 
547 			/*
548 			 * If there are too many items, ask user for display
549 			 * confirmation.
550 			 */
551 			if (matches_num > query_items) {
552 				(void)fprintf(el->el_outfile,
553 				    "Display all %zu possibilities? (y or n) ",
554 				    matches_num);
555 				(void)fflush(el->el_outfile);
556 				if (getc(stdin) != 'y')
557 					match_display = 0;
558 				(void)fprintf(el->el_outfile, "\n");
559 			}
560 
561 			if (match_display) {
562 				/*
563 				 * Interface of this function requires the
564 				 * strings be matches[1..num-1] for compat.
565 				 * We have matches_num strings not counting
566 				 * the prefix in matches[0], so we need to
567 				 * add 1 to matches_num for the call.
568 				 */
569 				fn_display_match_list(el, matches,
570 				    matches_num+1, maxlen);
571 			}
572 			retval = CC_REDISPLAY;
573 		} else if (matches[0][0]) {
574 			/*
575 			 * There was some common match, but the name was
576 			 * not complete enough. Next tab will print possible
577 			 * completions.
578 			 */
579 			el_beep(el);
580 		} else {
581 			/* lcd is not a valid object - further specification */
582 			/* is needed */
583 			el_beep(el);
584 			retval = CC_NORM;
585 		}
586 
587 free_matches:
588 		/* free elements of array and the array itself */
589 		for (i = 0; matches[i]; i++)
590 			el_free(matches[i]);
591 		el_free(matches);
592 		matches = NULL;
593 	}
594 	free(dequoted_temp);
595 	el_free(temp);
596 	return retval;
597 }
598 
599 /*
600  * el-compatible wrapper around rl_complete; needed for key binding
601  */
602 /* ARGSUSED */
603 unsigned char
_el_fn_complete(EditLine * el,int ch)604 _el_fn_complete(EditLine *el, int ch __attribute__((__unused__)))
605 {
606 	return (unsigned char)fn_complete(el, NULL, NULL,
607 	    break_chars, NULL, NULL, (size_t)100,
608 	    NULL, NULL, NULL, NULL,
609 	    NULL, NULL, NULL);
610 }
611 
612 static const Char *
sh_find_word_start(const Char * buffer,const Char * cursor)613 sh_find_word_start(const Char *buffer, const Char *cursor)
614 {
615 	const Char *word_start = buffer;
616 
617 	while (buffer < cursor) {
618 		if (*buffer == '\\')
619 			buffer++;
620 		else if (Strchr(break_chars, *buffer))
621 			word_start = buffer + 1;
622 		buffer++;
623 	}
624 	return word_start;
625 }
626 
627 static char *
sh_quote(const char * str)628 sh_quote(const char *str)
629 {
630 	const char *src;
631 	int extra_len = 0;
632 	char *quoted_str, *dst;
633 
634 	 for (src = str; *src != '\0'; src++)
635 		if (Strchr(break_chars, *src) ||
636 		    Strchr(extra_quote_chars, *src))
637 			extra_len++;
638 
639 	quoted_str = malloc(sizeof(*quoted_str) *
640 	     (strlen(str) + extra_len + 1));
641 	if (quoted_str == NULL)
642 		return NULL;
643 
644 	dst = quoted_str;
645 	for (src = str; *src != '\0'; src++) {
646 		if (Strchr(break_chars, *src) ||
647 		    Strchr(extra_quote_chars, *src))
648 			*dst++ = '\\';
649 		*dst++ = *src;
650 	}
651 	*dst = '\0';
652 
653 	return quoted_str;
654 }
655 
656 static Char *
sh_dequote(const Char * str)657 sh_dequote(const Char *str)
658 {
659 	Char *dequoted_str, *dst;
660 
661 	/* save extra space to replace \~ with ./~ */
662 	dequoted_str = malloc(sizeof(*dequoted_str) * (Strlen(str) + 1 + 1));
663 	if (dequoted_str == NULL)
664 		return NULL;
665 
666 	dst = dequoted_str;
667 
668 	/* dequote \~ at start as ./~ */
669 	if (*str == '\\' && str[1] == '~') {
670 		str++;
671 		*dst++ = '.';
672 		*dst++ = '/';
673 	}
674 
675 	while (*str) {
676 		if (*str == '\\')
677 			str++;
678 		if (*str)
679 			*dst++ = *str++;
680 	}
681 	*dst = '\0';
682 
683 	return dequoted_str;
684 }
685 
686 /*
687  * completion function using sh quoting rules; for key binding
688  */
689 /* ARGSUSED */
690 unsigned char
_el_fn_sh_complete(EditLine * el,int ch)691 _el_fn_sh_complete(EditLine *el, int ch __attribute__((__unused__)))
692 {
693 	return (unsigned char)fn_complete(el, NULL, NULL,
694 	    break_chars, NULL, NULL, 100,
695 	    NULL, NULL, NULL, NULL,
696 	    sh_find_word_start, sh_dequote, sh_quote);
697 }
698