| /NextBSD/contrib/less/ |
| HD | decode.c | 75 ESC,'v',0, A_B_SCREEN, 79 ESC,' ',0, A_FF_SCREEN, 81 ESC,'F',0, A_F_UNTIL_HILITE, 86 ESC,'u',0, A_UNDO_SEARCH, 90 ESC,'<',0, A_GOLINE, 93 ESC,'[',0, A_LSHIFT, 94 ESC,']',0, A_RSHIFT, 95 ESC,'(',0, A_LSHIFT, 96 ESC,')',0, A_RSHIFT, 105 ESC,CONTROL('F'),0, A_F_BRACKET, [all …]
|
| HD | less.hlp | 17 b ^B ESC-v * Backward one window (or _N lines). 20 ESC-SPACE * Forward one window, but don't stop at end-of-file. 23 ESC-) RightArrow * Left one half screen width (or _N positions). 24 ESC-( LeftArrow * Right one half screen width (or _N positions). 26 ESC-F Like F but stop when search pattern is found. 40 ESC-n * Repeat previous search, spanning files. 41 ESC-N * Repeat previous search, reverse dir. & spanning files. 42 ESC-u Undo (toggle) search highlighting. 55 g < ESC-< * Go to first line in file (or line _N). 56 G > ESC-> * Go to last line in file (or line _N). [all …]
|
| HD | NEWS | 18 * New command ESC-G goes to end of currently buffered data in a pipe. 72 * Add ESC-F command to keep reading data until a pattern is found. 297 are disabled via the -G option or the ESC-u command. 587 * LeftArrow and RightArrow are same as ESC-[ and ESC-]. 589 * Added commands ESC-( and ESC-), same as ESC-[ and ESC-]. 611 * New commands ESC-] and ESC-[ scroll the display horizontally. 613 * New command ESC-SPACE scrolls forward a full screen, even if it 758 Specifically, \ (backslash), ESC, TAB, BACKTAB, and control-L 795 * New commands ESC-^F and ESC-^B match arbitrary types of brackets. 806 ESC-/ Search forward thru file boundaries [all …]
|
| HD | less.h | 161 #define IS_CSI_START(c) (((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI)) 466 #define ESC CONTROL('[') macro
|
| /NextBSD/usr.sbin/bsdconfig/usermgmt/share/ |
| HD | user_input.subr | 157 # not cancel or press ESC, the $var_to_set variable will hold the newly- 200 # Return if user has either pressed ESC or chosen Cancel/No 252 # pressed ESC or chose Cancel/No 270 # pressed ESC or chose Cancel/No 299 # not cancel or press ESC, the $var_to_set variable will hold the newly- 311 # Return if user has either pressed ESC or chosen Cancel/No 349 # press ESC, $var_to_set will hold the confirmed user entry. Otherwise, if the 392 # Return if user either pressed ESC or chose Cancel/No 406 # Return if user either pressed ESC or chose Cancel/No 441 # user does not cancel or press ESC, the $var_to_set variable will hold the [all …]
|
| HD | group_input.subr | 124 # or press ESC, the $var_to_set variable will hold the newly-configured value 136 # Return if user has either pressed ESC or chosen Cancel/No 174 # press ESC, $var_to_set will hold the confirmed user entry. Otherwise, if the 221 # Return if user has either pressed ESC or chosen Cancel/No 238 # Return if user has either pressed ESC or chosen Cancel/No 272 # cancel or press ESC, the $var_to_set variable will hold the newly-configured 279 # Return if user has either pressed ESC or chosen Cancel/No 290 # does not cancel or press ESC, the $var_to_set variable will hold the newly- 333 # Return if user has either pressed ESC or chosen Cancel/No 383 # pressed ESC or chose Cancel/No [all …]
|
| HD | group.subr | 140 # Loop until the user decides to Exit, Cancel, or presses ESC 154 # Return if user either pressed ESC or chose Cancel/No 273 # Loop until the user decides to Exit, Cancel, or presses ESC 287 # Return if user either pressed ESC or chose Cancel/No 406 # Loop until the user decides to Exit, Cancel, or presses ESC 420 # Return if user either pressed ESC or chose Cancel/No
|
| /NextBSD/lib/libiconv_modules/ISO2022/ |
| HD | citrus_iso2022.c | 483 #define ESC '\033' macro 497 { CS94MULTI, -1, 2, -1, -1, 3, { ESC, '$', OECMA }, }, 499 { CS94MULTI, -1, 5, -1, 2, 6, { ESC, '&', ECMA, ESC, '$', OECMA }, }, 501 { CS94, 1, 2, -1, -1, 3, { ESC, CS94, ECMA, }, }, 503 { CS94, 1, 3, 2, -1, 4, { ESC, CS94, INTERM, ECMA, }, }, 505 { CS96, 1, 2, -1, -1, 3, { ESC, CS96, ECMA, }, }, 507 { CS96, 1, 3, 2, -1, 4, { ESC, CS96, INTERM, ECMA, }, }, 509 { CS94MULTI, 2, 3, -1, -1, 4, { ESC, '$', CS94, ECMA, }, }, 511 { CS96MULTI, 2, 3, -1, -1, 4, { ESC, '$', CS96, ECMA, }, }, 513 { CS94MULTI, 5, 6, -1, 2, 7, { ESC, '&', ECMA, ESC, '$', CS94, ECMA, }, }, [all …]
|
| /NextBSD/contrib/libreadline/ |
| HD | bind.c | 122 if (_rl_keymap[ESC].type == ISKMAP) 126 escmap = FUNCTION_TO_KEYMAP (_rl_keymap, ESC); 381 if (map[ESC].type == ISKMAP) 382 map = FUNCTION_TO_KEYMAP (map, ESC); 460 array[l++] = ESC; /* ESC is meta-prefix */ 470 if (_rl_convert_meta_chars_to_ascii && _rl_keymap[ESC].type == ISKMAP) 471 array[l++] = ESC; /* ESC is meta-prefix */ 512 array[l++] = ESC; 580 else if (c == ESC) 600 if (c == ESC) [all …]
|
| HD | chardefs.h | 160 #ifdef ESC 161 #undef ESC 163 #define ESC CTRL('[') macro
|
| HD | readline.c | 621 if (key == ESC) 626 if (key == ESC) 710 if (map[ESC].type == ISKMAP) 713 _rl_add_macro_char (ESC); 714 map = FUNCTION_TO_KEYMAP (map, ESC); 790 if (rl_editing_mode == vi_mode && key == ESC && map == vi_insertion_keymap
|
| /NextBSD/usr.bin/ee/nls/uk_UA.KOI8-U/ |
| HD | ee.msg | 54 44 "^[ (escape) ���� ESC-Enter: ����� � ee " 67 57 "^[ (ESC) ���� ^e �� ������... ^y ������ ����� ^u ����� ^p -���Ҧ��� " 71 61 "^c ������� ^k ������ ������ ^f צ������� ������ ESC-Enter: ����� � ee" 164 154 "^[ (ESC) ���� ^y �� ������ ^k ������ ����� ^p -����� ^g -���Ҧ���"
|
| /NextBSD/crypto/openssl/crypto/conf/ |
| HD | keysets.pl | 9 $ESC=0x20; 27 $v|=$ESC if ($c =~ /\\/); 122 #define CONF_ESC $ESC
|
| /NextBSD/lib/libiconv_modules/HZ/ |
| HD | citrus_hz.c | 103 #define ESC(escape) ((escape)->ch) macro 112 if (ESC(escape) == ch) in find_escape() 246 if (ESC(init) != ch) in _citrus_HZ_mbrtowc_priv() 255 ESC(init) != ch) in _citrus_HZ_mbrtowc_priv() 279 bit |= ESC(psenc->inuse) << 24; in _citrus_HZ_mbrtowc_priv() 367 psenc->ch[psenc->chlen++] = ESC(init); in _citrus_HZ_wcrtomb_priv() 373 psenc->ch[psenc->chlen++] = ESC(candidate); in _citrus_HZ_wcrtomb_priv() 410 psenc->ch[psenc->chlen++] = ESC(candidate); in _citrus_HZ_put_state_reset()
|
| /NextBSD/usr.sbin/bsdconfig/password/share/ |
| HD | password.subr | 44 # press ESC, the $pw_password environment variable will hold the password. 84 # Return if user either pressed ESC or chose Cancel/No 98 # Return if user either pressed ESC or chose Cancel/No
|
| /NextBSD/contrib/tcsh/ |
| HD | sh.file.c | 56 #define ESC CTL_ESC('\033') macro 104 tchars.c_cc[VEOL] = ESC; in setup_tty() 140 tchars.t_brkc = ESC; in setup_tty() 710 command = (last_Char == ESC) ? RECOGNIZE : LIST; in tenex() 714 if (last_Char == ESC) in tenex()
|
| HD | tw.h | 76 #define ESC CTL_ESC('\033') macro
|
| /NextBSD/usr.bin/col/ |
| HD | col.c | 66 #define ESC '\033' /* escape */ macro 206 case ESC: /* just ignore EOF */ in main() 414 PUTC(ESC); in flush_blanks()
|
| /NextBSD/contrib/file/magic/Magdir/ |
| HD | printer | 149 # Epson ESC/Page, ESC/PageColor 150 0 string \x1b\x01@EJL Epson ESC/Page language printer data
|
| /NextBSD/contrib/ntp/include/ |
| HD | ascii.h | 68 #define ESC 27 macro
|
| /NextBSD/usr.sbin/bsdconfig/startup/share/ |
| HD | rcedit.subr | 46 # user does not cancel or press ESC, the variable will be saved without 72 # Return if user has either pressed ESC or chosen Cancel/No
|
| /NextBSD/contrib/ncurses/ncurses/tinfo/ |
| HD | trim_sgr0.c | 45 #define ESC 033 /* ^[ */ macro 69 else if (s[0] == ESC && s[1] == L_BRACK) in is_csi()
|
| /NextBSD/usr.bin/fortune/datfiles/ |
| HD | freebsd-tips.sp.ok | 23 ESC
|
| /NextBSD/share/skel/ |
| HD | dot.shrc | 21 # line editor in sh(1), e.g. ESC to go into visual mode.
|
| /NextBSD/contrib/dialog/ |
| HD | dlg_keys.c | 302 if (dialog_key == ESC) { in dlg_result_key() 324 ASCII_NAME(ESC, '\033'), 427 DIALOG_NAME(ESC),
|