Home | History | Annotate | Line # | Download | only in libedit
common.c revision 1.44
      1  1.44  christos /*	$NetBSD: common.c,v 1.44 2016/04/17 18:39:14 christos Exp $	*/
      2   1.2     lukem 
      3   1.1       cgd /*-
      4   1.1       cgd  * Copyright (c) 1992, 1993
      5   1.1       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Christos Zoulas of Cornell University.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18  1.16       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.11  christos #include "config.h"
     36   1.1       cgd #if !defined(lint) && !defined(SCCSID)
     37   1.2     lukem #if 0
     38   1.1       cgd static char sccsid[] = "@(#)common.c	8.1 (Berkeley) 6/4/93";
     39   1.2     lukem #else
     40  1.44  christos __RCSID("$NetBSD: common.c,v 1.44 2016/04/17 18:39:14 christos Exp $");
     41   1.2     lukem #endif
     42   1.1       cgd #endif /* not lint && not SCCSID */
     43   1.1       cgd 
     44   1.1       cgd /*
     45   1.1       cgd  * common.c: Common Editor functions
     46   1.1       cgd  */
     47  1.37  christos #include <ctype.h>
     48  1.37  christos #include <string.h>
     49  1.37  christos 
     50   1.1       cgd #include "el.h"
     51  1.35  christos #include "common.h"
     52  1.35  christos #include "parse.h"
     53  1.35  christos #include "vi.h"
     54   1.1       cgd 
     55   1.8    simonb /* ed_end_of_file():
     56   1.1       cgd  *	Indicate end of file
     57   1.1       cgd  *	[^D]
     58   1.1       cgd  */
     59   1.1       cgd protected el_action_t
     60   1.1       cgd /*ARGSUSED*/
     61  1.31  christos ed_end_of_file(EditLine *el, wint_t c __attribute__((__unused__)))
     62   1.9     lukem {
     63   1.9     lukem 
     64   1.9     lukem 	re_goto_bottom(el);
     65   1.9     lukem 	*el->el_line.lastchar = '\0';
     66  1.26  christos 	return CC_EOF;
     67   1.1       cgd }
     68   1.1       cgd 
     69   1.1       cgd 
     70   1.8    simonb /* ed_insert():
     71   1.1       cgd  *	Add character to the line
     72   1.1       cgd  *	Insert a character [bound to all insert keys]
     73   1.1       cgd  */
     74   1.1       cgd protected el_action_t
     75  1.31  christos ed_insert(EditLine *el, wint_t c)
     76   1.9     lukem {
     77  1.13  christos 	int count = el->el_state.argument;
     78   1.1       cgd 
     79   1.9     lukem 	if (c == '\0')
     80  1.26  christos 		return CC_ERROR;
     81   1.1       cgd 
     82   1.9     lukem 	if (el->el_line.lastchar + el->el_state.argument >=
     83  1.10  jdolecek 	    el->el_line.limit) {
     84  1.10  jdolecek 		/* end of buffer space, try to allocate more */
     85  1.13  christos 		if (!ch_enlargebufs(el, (size_t) count))
     86  1.10  jdolecek 			return CC_ERROR;	/* error allocating more */
     87  1.10  jdolecek 	}
     88   1.9     lukem 
     89  1.13  christos 	if (count == 1) {
     90  1.12  christos 		if (el->el_state.inputmode == MODE_INSERT
     91  1.12  christos 		    || el->el_line.cursor >= el->el_line.lastchar)
     92  1.12  christos 			c_insert(el, 1);
     93   1.9     lukem 
     94  1.43  christos 		*el->el_line.cursor++ = c;
     95   1.9     lukem 		re_fastaddc(el);		/* fast refresh for one char. */
     96   1.9     lukem 	} else {
     97  1.12  christos 		if (el->el_state.inputmode != MODE_REPLACE_1)
     98  1.12  christos 			c_insert(el, el->el_state.argument);
     99   1.9     lukem 
    100  1.13  christos 		while (count-- && el->el_line.cursor < el->el_line.lastchar)
    101  1.43  christos 			*el->el_line.cursor++ = c;
    102   1.9     lukem 		re_refresh(el);
    103   1.9     lukem 	}
    104   1.1       cgd 
    105   1.9     lukem 	if (el->el_state.inputmode == MODE_REPLACE_1)
    106  1.12  christos 		return vi_command_mode(el, 0);
    107   1.1       cgd 
    108  1.26  christos 	return CC_NORM;
    109   1.1       cgd }
    110   1.1       cgd 
    111   1.1       cgd 
    112   1.8    simonb /* ed_delete_prev_word():
    113   1.1       cgd  *	Delete from beginning of current word to cursor
    114   1.1       cgd  *	[M-^?] [^W]
    115   1.1       cgd  */
    116   1.1       cgd protected el_action_t
    117   1.1       cgd /*ARGSUSED*/
    118  1.31  christos ed_delete_prev_word(EditLine *el, wint_t c __attribute__((__unused__)))
    119   1.9     lukem {
    120  1.43  christos 	wchar_t *cp, *p, *kp;
    121   1.9     lukem 
    122   1.9     lukem 	if (el->el_line.cursor == el->el_line.buffer)
    123  1.26  christos 		return CC_ERROR;
    124   1.9     lukem 
    125   1.9     lukem 	cp = c__prev_word(el->el_line.cursor, el->el_line.buffer,
    126   1.9     lukem 	    el->el_state.argument, ce__isword);
    127   1.9     lukem 
    128   1.9     lukem 	for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
    129   1.9     lukem 		*kp++ = *p;
    130   1.9     lukem 	el->el_chared.c_kill.last = kp;
    131   1.9     lukem 
    132  1.22  christos 	c_delbefore(el, (int)(el->el_line.cursor - cp));/* delete before dot */
    133   1.9     lukem 	el->el_line.cursor = cp;
    134   1.9     lukem 	if (el->el_line.cursor < el->el_line.buffer)
    135   1.9     lukem 		el->el_line.cursor = el->el_line.buffer; /* bounds check */
    136  1.26  christos 	return CC_REFRESH;
    137   1.1       cgd }
    138   1.1       cgd 
    139   1.1       cgd 
    140   1.8    simonb /* ed_delete_next_char():
    141   1.1       cgd  *	Delete character under cursor
    142   1.1       cgd  *	[^D] [x]
    143   1.1       cgd  */
    144   1.1       cgd protected el_action_t
    145   1.1       cgd /*ARGSUSED*/
    146  1.31  christos ed_delete_next_char(EditLine *el, wint_t c __attribute__((__unused__)))
    147   1.1       cgd {
    148  1.27  christos #ifdef DEBUG_EDIT
    149   1.9     lukem #define	EL	el->el_line
    150  1.40  christos 	(void) fprintf(el->el_errfile,
    151  1.41  christos 	    "\nD(b: %p(%ls)  c: %p(%ls) last: %p(%ls) limit: %p(%ls)\n",
    152   1.6  christos 	    EL.buffer, EL.buffer, EL.cursor, EL.cursor, EL.lastchar,
    153   1.6  christos 	    EL.lastchar, EL.limit, EL.limit);
    154   1.1       cgd #endif
    155   1.9     lukem 	if (el->el_line.cursor == el->el_line.lastchar) {
    156   1.9     lukem 			/* if I'm at the end */
    157   1.9     lukem 		if (el->el_map.type == MAP_VI) {
    158   1.9     lukem 			if (el->el_line.cursor == el->el_line.buffer) {
    159   1.9     lukem 				/* if I'm also at the beginning */
    160   1.1       cgd #ifdef KSHVI
    161  1.26  christos 				return CC_ERROR;
    162   1.1       cgd #else
    163  1.19  christos 				/* then do an EOF */
    164  1.25  christos 				terminal_writec(el, c);
    165  1.26  christos 				return CC_EOF;
    166   1.1       cgd #endif
    167   1.9     lukem 			} else {
    168   1.1       cgd #ifdef KSHVI
    169   1.9     lukem 				el->el_line.cursor--;
    170   1.1       cgd #else
    171  1.26  christos 				return CC_ERROR;
    172   1.1       cgd #endif
    173   1.9     lukem 			}
    174  1.29  christos 		} else
    175  1.26  christos 				return CC_ERROR;
    176   1.1       cgd 	}
    177   1.9     lukem 	c_delafter(el, el->el_state.argument);	/* delete after dot */
    178  1.29  christos 	if (el->el_map.type == MAP_VI &&
    179  1.29  christos 	    el->el_line.cursor >= el->el_line.lastchar &&
    180   1.9     lukem 	    el->el_line.cursor > el->el_line.buffer)
    181   1.9     lukem 			/* bounds check */
    182   1.9     lukem 		el->el_line.cursor = el->el_line.lastchar - 1;
    183  1.26  christos 	return CC_REFRESH;
    184   1.1       cgd }
    185   1.1       cgd 
    186   1.1       cgd 
    187   1.8    simonb /* ed_kill_line():
    188   1.1       cgd  *	Cut to the end of line
    189   1.1       cgd  *	[^K] [^K]
    190   1.1       cgd  */
    191   1.1       cgd protected el_action_t
    192   1.1       cgd /*ARGSUSED*/
    193  1.31  christos ed_kill_line(EditLine *el, wint_t c __attribute__((__unused__)))
    194   1.9     lukem {
    195  1.43  christos 	wchar_t *kp, *cp;
    196   1.9     lukem 
    197   1.9     lukem 	cp = el->el_line.cursor;
    198   1.9     lukem 	kp = el->el_chared.c_kill.buf;
    199   1.9     lukem 	while (cp < el->el_line.lastchar)
    200   1.9     lukem 		*kp++ = *cp++;	/* copy it */
    201   1.9     lukem 	el->el_chared.c_kill.last = kp;
    202   1.9     lukem 			/* zap! -- delete to end */
    203   1.9     lukem 	el->el_line.lastchar = el->el_line.cursor;
    204  1.26  christos 	return CC_REFRESH;
    205   1.1       cgd }
    206   1.1       cgd 
    207   1.1       cgd 
    208   1.8    simonb /* ed_move_to_end():
    209   1.1       cgd  *	Move cursor to the end of line
    210   1.1       cgd  *	[^E] [^E]
    211   1.1       cgd  */
    212   1.1       cgd protected el_action_t
    213   1.1       cgd /*ARGSUSED*/
    214  1.31  christos ed_move_to_end(EditLine *el, wint_t c __attribute__((__unused__)))
    215   1.1       cgd {
    216   1.9     lukem 
    217   1.9     lukem 	el->el_line.cursor = el->el_line.lastchar;
    218   1.9     lukem 	if (el->el_map.type == MAP_VI) {
    219  1.13  christos 		if (el->el_chared.c_vcmd.action != NOP) {
    220   1.9     lukem 			cv_delfini(el);
    221  1.26  christos 			return CC_REFRESH;
    222   1.9     lukem 		}
    223  1.21   aymeric #ifdef VI_MOVE
    224  1.21   aymeric 		el->el_line.cursor--;
    225  1.21   aymeric #endif
    226   1.1       cgd 	}
    227  1.26  christos 	return CC_CURSOR;
    228   1.1       cgd }
    229   1.1       cgd 
    230   1.1       cgd 
    231   1.8    simonb /* ed_move_to_beg():
    232   1.1       cgd  *	Move cursor to the beginning of line
    233   1.1       cgd  *	[^A] [^A]
    234   1.1       cgd  */
    235   1.1       cgd protected el_action_t
    236   1.1       cgd /*ARGSUSED*/
    237  1.31  christos ed_move_to_beg(EditLine *el, wint_t c __attribute__((__unused__)))
    238   1.9     lukem {
    239   1.9     lukem 
    240   1.9     lukem 	el->el_line.cursor = el->el_line.buffer;
    241   1.9     lukem 
    242   1.9     lukem 	if (el->el_map.type == MAP_VI) {
    243   1.9     lukem 			/* We want FIRST non space character */
    244  1.41  christos 		while (iswspace(*el->el_line.cursor))
    245   1.9     lukem 			el->el_line.cursor++;
    246  1.13  christos 		if (el->el_chared.c_vcmd.action != NOP) {
    247   1.9     lukem 			cv_delfini(el);
    248  1.26  christos 			return CC_REFRESH;
    249   1.9     lukem 		}
    250   1.1       cgd 	}
    251  1.26  christos 	return CC_CURSOR;
    252   1.1       cgd }
    253   1.1       cgd 
    254   1.1       cgd 
    255   1.8    simonb /* ed_transpose_chars():
    256   1.1       cgd  *	Exchange the character to the left of the cursor with the one under it
    257   1.1       cgd  *	[^T] [^T]
    258   1.1       cgd  */
    259   1.1       cgd protected el_action_t
    260  1.31  christos ed_transpose_chars(EditLine *el, wint_t c)
    261   1.9     lukem {
    262   1.9     lukem 
    263   1.9     lukem 	if (el->el_line.cursor < el->el_line.lastchar) {
    264   1.9     lukem 		if (el->el_line.lastchar <= &el->el_line.buffer[1])
    265  1.26  christos 			return CC_ERROR;
    266   1.9     lukem 		else
    267   1.9     lukem 			el->el_line.cursor++;
    268   1.9     lukem 	}
    269   1.9     lukem 	if (el->el_line.cursor > &el->el_line.buffer[1]) {
    270   1.9     lukem 		/* must have at least two chars entered */
    271   1.9     lukem 		c = el->el_line.cursor[-2];
    272   1.9     lukem 		el->el_line.cursor[-2] = el->el_line.cursor[-1];
    273  1.43  christos 		el->el_line.cursor[-1] = c;
    274  1.26  christos 		return CC_REFRESH;
    275   1.9     lukem 	} else
    276  1.26  christos 		return CC_ERROR;
    277   1.1       cgd }
    278   1.1       cgd 
    279   1.1       cgd 
    280   1.8    simonb /* ed_next_char():
    281   1.1       cgd  *	Move to the right one character
    282   1.1       cgd  *	[^F] [^F]
    283   1.1       cgd  */
    284   1.1       cgd protected el_action_t
    285   1.1       cgd /*ARGSUSED*/
    286  1.31  christos ed_next_char(EditLine *el, wint_t c __attribute__((__unused__)))
    287   1.1       cgd {
    288  1.43  christos 	wchar_t *lim = el->el_line.lastchar;
    289   1.1       cgd 
    290  1.13  christos 	if (el->el_line.cursor >= lim ||
    291  1.13  christos 	    (el->el_line.cursor == lim - 1 &&
    292  1.13  christos 	    el->el_map.type == MAP_VI &&
    293  1.13  christos 	    el->el_chared.c_vcmd.action == NOP))
    294  1.26  christos 		return CC_ERROR;
    295   1.1       cgd 
    296   1.9     lukem 	el->el_line.cursor += el->el_state.argument;
    297  1.13  christos 	if (el->el_line.cursor > lim)
    298  1.13  christos 		el->el_line.cursor = lim;
    299   1.1       cgd 
    300   1.9     lukem 	if (el->el_map.type == MAP_VI)
    301  1.13  christos 		if (el->el_chared.c_vcmd.action != NOP) {
    302   1.9     lukem 			cv_delfini(el);
    303  1.26  christos 			return CC_REFRESH;
    304   1.9     lukem 		}
    305  1.26  christos 	return CC_CURSOR;
    306   1.1       cgd }
    307   1.1       cgd 
    308   1.1       cgd 
    309   1.8    simonb /* ed_prev_word():
    310   1.1       cgd  *	Move to the beginning of the current word
    311   1.1       cgd  *	[M-b] [b]
    312   1.1       cgd  */
    313   1.1       cgd protected el_action_t
    314   1.1       cgd /*ARGSUSED*/
    315  1.31  christos ed_prev_word(EditLine *el, wint_t c __attribute__((__unused__)))
    316   1.1       cgd {
    317   1.1       cgd 
    318   1.9     lukem 	if (el->el_line.cursor == el->el_line.buffer)
    319  1.26  christos 		return CC_ERROR;
    320   1.1       cgd 
    321   1.9     lukem 	el->el_line.cursor = c__prev_word(el->el_line.cursor,
    322   1.9     lukem 	    el->el_line.buffer,
    323   1.9     lukem 	    el->el_state.argument,
    324   1.9     lukem 	    ce__isword);
    325   1.1       cgd 
    326   1.9     lukem 	if (el->el_map.type == MAP_VI)
    327  1.13  christos 		if (el->el_chared.c_vcmd.action != NOP) {
    328   1.9     lukem 			cv_delfini(el);
    329  1.26  christos 			return CC_REFRESH;
    330   1.9     lukem 		}
    331  1.26  christos 	return CC_CURSOR;
    332   1.1       cgd }
    333   1.1       cgd 
    334   1.1       cgd 
    335   1.8    simonb /* ed_prev_char():
    336   1.1       cgd  *	Move to the left one character
    337   1.1       cgd  *	[^B] [^B]
    338   1.1       cgd  */
    339   1.1       cgd protected el_action_t
    340   1.1       cgd /*ARGSUSED*/
    341  1.31  christos ed_prev_char(EditLine *el, wint_t c __attribute__((__unused__)))
    342   1.1       cgd {
    343   1.1       cgd 
    344   1.9     lukem 	if (el->el_line.cursor > el->el_line.buffer) {
    345   1.9     lukem 		el->el_line.cursor -= el->el_state.argument;
    346   1.9     lukem 		if (el->el_line.cursor < el->el_line.buffer)
    347   1.9     lukem 			el->el_line.cursor = el->el_line.buffer;
    348   1.9     lukem 
    349   1.9     lukem 		if (el->el_map.type == MAP_VI)
    350  1.13  christos 			if (el->el_chared.c_vcmd.action != NOP) {
    351   1.9     lukem 				cv_delfini(el);
    352  1.26  christos 				return CC_REFRESH;
    353   1.9     lukem 			}
    354  1.26  christos 		return CC_CURSOR;
    355   1.9     lukem 	} else
    356  1.26  christos 		return CC_ERROR;
    357   1.1       cgd }
    358   1.1       cgd 
    359   1.1       cgd 
    360   1.8    simonb /* ed_quoted_insert():
    361   1.1       cgd  *	Add the next character typed verbatim
    362   1.1       cgd  *	[^V] [^V]
    363   1.1       cgd  */
    364   1.1       cgd protected el_action_t
    365  1.31  christos ed_quoted_insert(EditLine *el, wint_t c)
    366   1.9     lukem {
    367   1.9     lukem 	int num;
    368   1.9     lukem 
    369   1.9     lukem 	tty_quotemode(el);
    370  1.39  christos 	num = el_wgetc(el, &c);
    371   1.9     lukem 	tty_noquotemode(el);
    372   1.9     lukem 	if (num == 1)
    373  1.26  christos 		return ed_insert(el, c);
    374   1.9     lukem 	else
    375  1.26  christos 		return ed_end_of_file(el, 0);
    376   1.1       cgd }
    377   1.1       cgd 
    378   1.1       cgd 
    379   1.8    simonb /* ed_digit():
    380   1.1       cgd  *	Adds to argument or enters a digit
    381   1.1       cgd  */
    382   1.1       cgd protected el_action_t
    383  1.31  christos ed_digit(EditLine *el, wint_t c)
    384   1.9     lukem {
    385   1.9     lukem 
    386  1.41  christos 	if (!iswdigit(c))
    387  1.26  christos 		return CC_ERROR;
    388   1.9     lukem 
    389   1.9     lukem 	if (el->el_state.doingarg) {
    390   1.9     lukem 			/* if doing an arg, add this in... */
    391   1.9     lukem 		if (el->el_state.lastcmd == EM_UNIVERSAL_ARGUMENT)
    392   1.9     lukem 			el->el_state.argument = c - '0';
    393   1.9     lukem 		else {
    394   1.9     lukem 			if (el->el_state.argument > 1000000)
    395  1.26  christos 				return CC_ERROR;
    396   1.9     lukem 			el->el_state.argument =
    397   1.9     lukem 			    (el->el_state.argument * 10) + (c - '0');
    398   1.9     lukem 		}
    399  1.26  christos 		return CC_ARGHACK;
    400  1.12  christos 	}
    401   1.9     lukem 
    402  1.12  christos 	return ed_insert(el, c);
    403   1.1       cgd }
    404   1.1       cgd 
    405   1.1       cgd 
    406   1.8    simonb /* ed_argument_digit():
    407   1.1       cgd  *	Digit that starts argument
    408   1.1       cgd  *	For ESC-n
    409   1.1       cgd  */
    410   1.1       cgd protected el_action_t
    411  1.31  christos ed_argument_digit(EditLine *el, wint_t c)
    412   1.9     lukem {
    413   1.9     lukem 
    414  1.41  christos 	if (!iswdigit(c))
    415  1.26  christos 		return CC_ERROR;
    416   1.9     lukem 
    417   1.9     lukem 	if (el->el_state.doingarg) {
    418   1.9     lukem 		if (el->el_state.argument > 1000000)
    419  1.26  christos 			return CC_ERROR;
    420   1.9     lukem 		el->el_state.argument = (el->el_state.argument * 10) +
    421   1.9     lukem 		    (c - '0');
    422   1.9     lukem 	} else {		/* else starting an argument */
    423   1.9     lukem 		el->el_state.argument = c - '0';
    424   1.9     lukem 		el->el_state.doingarg = 1;
    425   1.9     lukem 	}
    426  1.26  christos 	return CC_ARGHACK;
    427   1.1       cgd }
    428   1.1       cgd 
    429   1.1       cgd 
    430   1.8    simonb /* ed_unassigned():
    431   1.1       cgd  *	Indicates unbound character
    432   1.1       cgd  *	Bound to keys that are not assigned
    433   1.1       cgd  */
    434   1.1       cgd protected el_action_t
    435   1.1       cgd /*ARGSUSED*/
    436  1.28  christos ed_unassigned(EditLine *el __attribute__((__unused__)),
    437  1.31  christos     wint_t c __attribute__((__unused__)))
    438   1.9     lukem {
    439   1.9     lukem 
    440  1.26  christos 	return CC_ERROR;
    441   1.1       cgd }
    442   1.1       cgd 
    443   1.1       cgd 
    444  1.44  christos /* ed_ignore():
    445  1.44  christos  *	Input characters that have no effect
    446  1.44  christos  *	[^C ^O ^Q ^S ^Z ^\ ^]] [^C ^O ^Q ^S ^\]
    447   1.1       cgd  */
    448   1.1       cgd protected el_action_t
    449   1.1       cgd /*ARGSUSED*/
    450  1.44  christos ed_ignore(EditLine *el __attribute__((__unused__)),
    451  1.31  christos 	      wint_t c __attribute__((__unused__)))
    452   1.8    simonb {
    453   1.9     lukem 
    454  1.26  christos 	return CC_NORM;
    455   1.1       cgd }
    456   1.1       cgd 
    457   1.1       cgd 
    458   1.8    simonb /* ed_newline():
    459   1.1       cgd  *	Execute command
    460   1.1       cgd  *	[^J]
    461   1.1       cgd  */
    462   1.1       cgd protected el_action_t
    463   1.1       cgd /*ARGSUSED*/
    464  1.31  christos ed_newline(EditLine *el, wint_t c __attribute__((__unused__)))
    465   1.9     lukem {
    466   1.9     lukem 
    467   1.9     lukem 	re_goto_bottom(el);
    468   1.9     lukem 	*el->el_line.lastchar++ = '\n';
    469   1.9     lukem 	*el->el_line.lastchar = '\0';
    470  1.26  christos 	return CC_NEWLINE;
    471   1.1       cgd }
    472   1.1       cgd 
    473   1.1       cgd 
    474   1.8    simonb /* ed_delete_prev_char():
    475   1.1       cgd  *	Delete the character to the left of the cursor
    476   1.1       cgd  *	[^?]
    477   1.1       cgd  */
    478   1.1       cgd protected el_action_t
    479   1.1       cgd /*ARGSUSED*/
    480  1.31  christos ed_delete_prev_char(EditLine *el, wint_t c __attribute__((__unused__)))
    481   1.9     lukem {
    482   1.9     lukem 
    483   1.9     lukem 	if (el->el_line.cursor <= el->el_line.buffer)
    484  1.26  christos 		return CC_ERROR;
    485   1.9     lukem 
    486   1.9     lukem 	c_delbefore(el, el->el_state.argument);
    487   1.9     lukem 	el->el_line.cursor -= el->el_state.argument;
    488   1.9     lukem 	if (el->el_line.cursor < el->el_line.buffer)
    489   1.9     lukem 		el->el_line.cursor = el->el_line.buffer;
    490  1.26  christos 	return CC_REFRESH;
    491   1.1       cgd }
    492   1.1       cgd 
    493   1.1       cgd 
    494   1.8    simonb /* ed_clear_screen():
    495   1.1       cgd  *	Clear screen leaving current line at the top
    496   1.1       cgd  *	[^L]
    497   1.1       cgd  */
    498   1.1       cgd protected el_action_t
    499   1.1       cgd /*ARGSUSED*/
    500  1.31  christos ed_clear_screen(EditLine *el, wint_t c __attribute__((__unused__)))
    501   1.9     lukem {
    502   1.9     lukem 
    503  1.25  christos 	terminal_clear_screen(el);	/* clear the whole real screen */
    504   1.9     lukem 	re_clear_display(el);	/* reset everything */
    505  1.26  christos 	return CC_REFRESH;
    506   1.1       cgd }
    507   1.1       cgd 
    508   1.1       cgd 
    509   1.8    simonb /* ed_redisplay():
    510   1.1       cgd  *	Redisplay everything
    511   1.1       cgd  *	^R
    512   1.1       cgd  */
    513   1.1       cgd protected el_action_t
    514   1.1       cgd /*ARGSUSED*/
    515  1.38  christos ed_redisplay(EditLine *el __attribute__((__unused__)),
    516  1.31  christos 	     wint_t c __attribute__((__unused__)))
    517   1.1       cgd {
    518   1.9     lukem 
    519  1.26  christos 	return CC_REDISPLAY;
    520   1.1       cgd }
    521   1.1       cgd 
    522   1.1       cgd 
    523   1.8    simonb /* ed_start_over():
    524   1.1       cgd  *	Erase current line and start from scratch
    525   1.1       cgd  *	[^G]
    526   1.1       cgd  */
    527   1.1       cgd protected el_action_t
    528   1.1       cgd /*ARGSUSED*/
    529  1.31  christos ed_start_over(EditLine *el, wint_t c __attribute__((__unused__)))
    530   1.1       cgd {
    531   1.9     lukem 
    532  1.17  christos 	ch_reset(el, 0);
    533  1.26  christos 	return CC_REFRESH;
    534   1.1       cgd }
    535   1.1       cgd 
    536   1.1       cgd 
    537   1.8    simonb /* ed_sequence_lead_in():
    538   1.1       cgd  *	First character in a bound sequence
    539   1.1       cgd  *	Placeholder for external keys
    540   1.1       cgd  */
    541   1.1       cgd protected el_action_t
    542   1.1       cgd /*ARGSUSED*/
    543  1.38  christos ed_sequence_lead_in(EditLine *el __attribute__((__unused__)),
    544  1.31  christos 		    wint_t c __attribute__((__unused__)))
    545   1.1       cgd {
    546   1.9     lukem 
    547  1.26  christos 	return CC_NORM;
    548   1.1       cgd }
    549   1.1       cgd 
    550   1.1       cgd 
    551   1.8    simonb /* ed_prev_history():
    552   1.1       cgd  *	Move to the previous history line
    553   1.1       cgd  *	[^P] [k]
    554   1.1       cgd  */
    555   1.1       cgd protected el_action_t
    556   1.1       cgd /*ARGSUSED*/
    557  1.31  christos ed_prev_history(EditLine *el, wint_t c __attribute__((__unused__)))
    558   1.9     lukem {
    559   1.9     lukem 	char beep = 0;
    560  1.13  christos 	int sv_event = el->el_history.eventno;
    561   1.9     lukem 
    562  1.12  christos 	el->el_chared.c_undo.len = -1;
    563   1.9     lukem 	*el->el_line.lastchar = '\0';		/* just in case */
    564   1.9     lukem 
    565   1.9     lukem 	if (el->el_history.eventno == 0) {	/* save the current buffer
    566   1.9     lukem 						 * away */
    567  1.42  christos 		(void) wcsncpy(el->el_history.buf, el->el_line.buffer,
    568   1.9     lukem 		    EL_BUFSIZ);
    569   1.9     lukem 		el->el_history.last = el->el_history.buf +
    570   1.9     lukem 		    (el->el_line.lastchar - el->el_line.buffer);
    571   1.9     lukem 	}
    572   1.9     lukem 	el->el_history.eventno += el->el_state.argument;
    573   1.9     lukem 
    574   1.9     lukem 	if (hist_get(el) == CC_ERROR) {
    575  1.13  christos 		if (el->el_map.type == MAP_VI) {
    576  1.13  christos 			el->el_history.eventno = sv_event;
    577  1.13  christos 		}
    578   1.9     lukem 		beep = 1;
    579   1.9     lukem 		/* el->el_history.eventno was fixed by first call */
    580   1.9     lukem 		(void) hist_get(el);
    581   1.9     lukem 	}
    582   1.9     lukem 	if (beep)
    583  1.13  christos 		return CC_REFRESH_BEEP;
    584  1.13  christos 	return CC_REFRESH;
    585   1.1       cgd }
    586   1.1       cgd 
    587   1.1       cgd 
    588   1.8    simonb /* ed_next_history():
    589   1.1       cgd  *	Move to the next history line
    590   1.1       cgd  *	[^N] [j]
    591   1.1       cgd  */
    592   1.1       cgd protected el_action_t
    593   1.1       cgd /*ARGSUSED*/
    594  1.31  christos ed_next_history(EditLine *el, wint_t c __attribute__((__unused__)))
    595   1.1       cgd {
    596  1.13  christos 	el_action_t beep = CC_REFRESH, rval;
    597   1.1       cgd 
    598  1.12  christos 	el->el_chared.c_undo.len = -1;
    599   1.9     lukem 	*el->el_line.lastchar = '\0';	/* just in case */
    600   1.1       cgd 
    601   1.9     lukem 	el->el_history.eventno -= el->el_state.argument;
    602   1.1       cgd 
    603   1.9     lukem 	if (el->el_history.eventno < 0) {
    604   1.9     lukem 		el->el_history.eventno = 0;
    605  1.13  christos 		beep = CC_REFRESH_BEEP;
    606   1.9     lukem 	}
    607  1.13  christos 	rval = hist_get(el);
    608  1.13  christos 	if (rval == CC_REFRESH)
    609  1.13  christos 		return beep;
    610  1.13  christos 	return rval;
    611  1.13  christos 
    612   1.1       cgd }
    613   1.1       cgd 
    614   1.1       cgd 
    615   1.8    simonb /* ed_search_prev_history():
    616   1.1       cgd  *	Search previous in history for a line matching the current
    617   1.1       cgd  *	next search history [M-P] [K]
    618   1.1       cgd  */
    619   1.1       cgd protected el_action_t
    620   1.1       cgd /*ARGSUSED*/
    621  1.31  christos ed_search_prev_history(EditLine *el, wint_t c __attribute__((__unused__)))
    622   1.9     lukem {
    623  1.43  christos 	const wchar_t *hp;
    624   1.9     lukem 	int h;
    625  1.36  christos 	int found = 0;
    626   1.9     lukem 
    627   1.9     lukem 	el->el_chared.c_vcmd.action = NOP;
    628  1.12  christos 	el->el_chared.c_undo.len = -1;
    629   1.9     lukem 	*el->el_line.lastchar = '\0';	/* just in case */
    630   1.9     lukem 	if (el->el_history.eventno < 0) {
    631   1.1       cgd #ifdef DEBUG_EDIT
    632   1.9     lukem 		(void) fprintf(el->el_errfile,
    633   1.9     lukem 		    "e_prev_search_hist(): eventno < 0;\n");
    634   1.1       cgd #endif
    635   1.9     lukem 		el->el_history.eventno = 0;
    636  1.26  christos 		return CC_ERROR;
    637   1.9     lukem 	}
    638   1.9     lukem 	if (el->el_history.eventno == 0) {
    639  1.42  christos 		(void) wcsncpy(el->el_history.buf, el->el_line.buffer,
    640   1.9     lukem 		    EL_BUFSIZ);
    641   1.9     lukem 		el->el_history.last = el->el_history.buf +
    642   1.9     lukem 		    (el->el_line.lastchar - el->el_line.buffer);
    643   1.9     lukem 	}
    644   1.9     lukem 	if (el->el_history.ref == NULL)
    645  1.26  christos 		return CC_ERROR;
    646   1.1       cgd 
    647   1.9     lukem 	hp = HIST_FIRST(el);
    648   1.9     lukem 	if (hp == NULL)
    649  1.26  christos 		return CC_ERROR;
    650   1.1       cgd 
    651   1.9     lukem 	c_setpat(el);		/* Set search pattern !! */
    652   1.1       cgd 
    653   1.9     lukem 	for (h = 1; h <= el->el_history.eventno; h++)
    654   1.9     lukem 		hp = HIST_NEXT(el);
    655   1.1       cgd 
    656   1.9     lukem 	while (hp != NULL) {
    657   1.1       cgd #ifdef SDEBUG
    658   1.9     lukem 		(void) fprintf(el->el_errfile, "Comparing with \"%s\"\n", hp);
    659   1.1       cgd #endif
    660  1.42  christos 		if ((wcsncmp(hp, el->el_line.buffer, (size_t)
    661   1.9     lukem 			    (el->el_line.lastchar - el->el_line.buffer)) ||
    662   1.9     lukem 			hp[el->el_line.lastchar - el->el_line.buffer]) &&
    663   1.9     lukem 		    c_hmatch(el, hp)) {
    664  1.36  christos 			found = 1;
    665   1.9     lukem 			break;
    666   1.9     lukem 		}
    667   1.9     lukem 		h++;
    668   1.9     lukem 		hp = HIST_NEXT(el);
    669   1.9     lukem 	}
    670   1.1       cgd 
    671   1.9     lukem 	if (!found) {
    672   1.1       cgd #ifdef SDEBUG
    673   1.9     lukem 		(void) fprintf(el->el_errfile, "not found\n");
    674   1.1       cgd #endif
    675  1.26  christos 		return CC_ERROR;
    676   1.9     lukem 	}
    677   1.9     lukem 	el->el_history.eventno = h;
    678   1.1       cgd 
    679  1.26  christos 	return hist_get(el);
    680   1.1       cgd }
    681   1.1       cgd 
    682   1.1       cgd 
    683   1.8    simonb /* ed_search_next_history():
    684   1.1       cgd  *	Search next in history for a line matching the current
    685   1.1       cgd  *	[M-N] [J]
    686   1.1       cgd  */
    687   1.1       cgd protected el_action_t
    688   1.1       cgd /*ARGSUSED*/
    689  1.31  christos ed_search_next_history(EditLine *el, wint_t c __attribute__((__unused__)))
    690   1.1       cgd {
    691  1.43  christos 	const wchar_t *hp;
    692   1.9     lukem 	int h;
    693  1.36  christos 	int found = 0;
    694   1.1       cgd 
    695   1.9     lukem 	el->el_chared.c_vcmd.action = NOP;
    696  1.12  christos 	el->el_chared.c_undo.len = -1;
    697   1.9     lukem 	*el->el_line.lastchar = '\0';	/* just in case */
    698   1.1       cgd 
    699   1.9     lukem 	if (el->el_history.eventno == 0)
    700  1.26  christos 		return CC_ERROR;
    701   1.1       cgd 
    702   1.9     lukem 	if (el->el_history.ref == NULL)
    703  1.26  christos 		return CC_ERROR;
    704   1.1       cgd 
    705   1.9     lukem 	hp = HIST_FIRST(el);
    706   1.9     lukem 	if (hp == NULL)
    707  1.26  christos 		return CC_ERROR;
    708   1.1       cgd 
    709   1.9     lukem 	c_setpat(el);		/* Set search pattern !! */
    710   1.1       cgd 
    711   1.9     lukem 	for (h = 1; h < el->el_history.eventno && hp; h++) {
    712   1.1       cgd #ifdef SDEBUG
    713   1.9     lukem 		(void) fprintf(el->el_errfile, "Comparing with \"%s\"\n", hp);
    714   1.1       cgd #endif
    715  1.42  christos 		if ((wcsncmp(hp, el->el_line.buffer, (size_t)
    716   1.9     lukem 			    (el->el_line.lastchar - el->el_line.buffer)) ||
    717   1.9     lukem 			hp[el->el_line.lastchar - el->el_line.buffer]) &&
    718   1.9     lukem 		    c_hmatch(el, hp))
    719   1.9     lukem 			found = h;
    720   1.9     lukem 		hp = HIST_NEXT(el);
    721   1.9     lukem 	}
    722   1.1       cgd 
    723   1.9     lukem 	if (!found) {		/* is it the current history number? */
    724   1.9     lukem 		if (!c_hmatch(el, el->el_history.buf)) {
    725   1.1       cgd #ifdef SDEBUG
    726   1.9     lukem 			(void) fprintf(el->el_errfile, "not found\n");
    727   1.1       cgd #endif
    728  1.26  christos 			return CC_ERROR;
    729   1.9     lukem 		}
    730   1.1       cgd 	}
    731   1.9     lukem 	el->el_history.eventno = found;
    732   1.1       cgd 
    733  1.26  christos 	return hist_get(el);
    734   1.1       cgd }
    735   1.1       cgd 
    736   1.1       cgd 
    737   1.1       cgd /* ed_prev_line():
    738   1.1       cgd  *	Move up one line
    739   1.1       cgd  *	Could be [k] [^p]
    740   1.1       cgd  */
    741   1.1       cgd protected el_action_t
    742   1.1       cgd /*ARGSUSED*/
    743  1.31  christos ed_prev_line(EditLine *el, wint_t c __attribute__((__unused__)))
    744   1.9     lukem {
    745  1.43  christos 	wchar_t *ptr;
    746   1.9     lukem 	int nchars = c_hpos(el);
    747   1.8    simonb 
    748   1.9     lukem 	/*
    749   1.9     lukem          * Move to the line requested
    750   1.9     lukem          */
    751   1.9     lukem 	if (*(ptr = el->el_line.cursor) == '\n')
    752   1.9     lukem 		ptr--;
    753   1.9     lukem 
    754   1.9     lukem 	for (; ptr >= el->el_line.buffer; ptr--)
    755   1.9     lukem 		if (*ptr == '\n' && --el->el_state.argument <= 0)
    756   1.9     lukem 			break;
    757   1.9     lukem 
    758   1.9     lukem 	if (el->el_state.argument > 0)
    759  1.26  christos 		return CC_ERROR;
    760   1.9     lukem 
    761   1.9     lukem 	/*
    762   1.9     lukem          * Move to the beginning of the line
    763   1.9     lukem          */
    764   1.9     lukem 	for (ptr--; ptr >= el->el_line.buffer && *ptr != '\n'; ptr--)
    765   1.9     lukem 		continue;
    766   1.9     lukem 
    767   1.9     lukem 	/*
    768   1.9     lukem          * Move to the character requested
    769   1.9     lukem          */
    770   1.9     lukem 	for (ptr++;
    771   1.9     lukem 	    nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
    772   1.9     lukem 	    ptr++)
    773   1.9     lukem 		continue;
    774   1.9     lukem 
    775   1.9     lukem 	el->el_line.cursor = ptr;
    776  1.26  christos 	return CC_CURSOR;
    777   1.1       cgd }
    778   1.1       cgd 
    779   1.1       cgd 
    780   1.1       cgd /* ed_next_line():
    781   1.1       cgd  *	Move down one line
    782   1.1       cgd  *	Could be [j] [^n]
    783   1.1       cgd  */
    784   1.1       cgd protected el_action_t
    785   1.1       cgd /*ARGSUSED*/
    786  1.31  christos ed_next_line(EditLine *el, wint_t c __attribute__((__unused__)))
    787   1.9     lukem {
    788  1.43  christos 	wchar_t *ptr;
    789   1.9     lukem 	int nchars = c_hpos(el);
    790   1.8    simonb 
    791   1.9     lukem 	/*
    792   1.9     lukem          * Move to the line requested
    793   1.9     lukem          */
    794   1.9     lukem 	for (ptr = el->el_line.cursor; ptr < el->el_line.lastchar; ptr++)
    795   1.9     lukem 		if (*ptr == '\n' && --el->el_state.argument <= 0)
    796   1.9     lukem 			break;
    797   1.9     lukem 
    798   1.9     lukem 	if (el->el_state.argument > 0)
    799  1.26  christos 		return CC_ERROR;
    800   1.9     lukem 
    801   1.9     lukem 	/*
    802   1.9     lukem          * Move to the character requested
    803   1.9     lukem          */
    804   1.9     lukem 	for (ptr++;
    805   1.9     lukem 	    nchars-- > 0 && ptr < el->el_line.lastchar && *ptr != '\n';
    806   1.9     lukem 	    ptr++)
    807   1.9     lukem 		continue;
    808   1.9     lukem 
    809   1.9     lukem 	el->el_line.cursor = ptr;
    810  1.26  christos 	return CC_CURSOR;
    811   1.1       cgd }
    812   1.1       cgd 
    813   1.1       cgd 
    814   1.8    simonb /* ed_command():
    815   1.1       cgd  *	Editline extended command
    816   1.1       cgd  *	[M-X] [:]
    817   1.1       cgd  */
    818   1.1       cgd protected el_action_t
    819   1.1       cgd /*ARGSUSED*/
    820  1.31  christos ed_command(EditLine *el, wint_t c __attribute__((__unused__)))
    821   1.9     lukem {
    822  1.43  christos 	wchar_t tmpbuf[EL_BUFSIZ];
    823   1.9     lukem 	int tmplen;
    824   1.9     lukem 
    825  1.42  christos 	tmplen = c_gets(el, tmpbuf, L"\n: ");
    826  1.25  christos 	terminal__putc(el, '\n');
    827   1.9     lukem 
    828  1.14  christos 	if (tmplen < 0 || (tmpbuf[tmplen] = 0, parse_line(el, tmpbuf)) == -1)
    829  1.25  christos 		terminal_beep(el);
    830   1.9     lukem 
    831  1.14  christos 	el->el_map.current = el->el_map.key;
    832  1.14  christos 	re_clear_display(el);
    833  1.14  christos 	return CC_REFRESH;
    834   1.1       cgd }
    835