Lines Matching refs:CTRL
563 d = CTRL('w'); in read_line()
591 case CTRL('['): /* saw esc. character */ in read_line()
595 case CTRL('f'): /* move forward one char */ in read_line()
600 case CTRL('a'): /* cursor to beginning of line */ in read_line()
605 case CTRL('e'): /* cursor to end of line */ in read_line()
611 case CTRL('n'): /* Move to next line in buffer */ in read_line()
612 case CTRL('p'): /* Move to previous line in buffer */ in read_line()
613 if (d == CTRL('p')) { in read_line()
644 case CTRL('o'): /* Insert newline */ in read_line()
647 case CTRL('k'): /* Erase from cursor to eol, saving */ in read_line()
675 case CTRL('w'): /* Erase word */ in read_line()
688 case CTRL('u'): /* Erases line, saving chars */ in read_line()
695 case CTRL('y'): /* Insert save buffer before cursor */ in read_line()
708 case CTRL('q'): /* Quote next char */ in read_line()
712 case CTRL('l'): /* Display edit buffer */ in read_line()
722 case CTRL('r'): /* redraw line */ in read_line()
726 case CTRL('c'): /* Exit script editor */ in read_line()
729 case CTRL('b'): /* backup cursor */ in read_line()
736 case CTRL('h'): /* Backspace */ in read_line()