Searched refs:el_action_t (Results 1 – 18 of 18) sorted by relevance
/openbsd/lib/libedit/ |
H A D | vi.c | 60 static el_action_t 92 static el_action_t 124 protected el_action_t 136 protected el_action_t 148 protected el_action_t 172 protected el_action_t 196 protected el_action_t 219 protected el_action_t 242 protected el_action_t 755 el_action_t r; in vi_repeat_prev_char() [all …]
|
H A D | map.h | 44 typedef el_action_t (*el_func_t)(EditLine *, wint_t); 53 el_action_t *alt; /* The current alternate key map */ 54 el_action_t *key; /* The current normal key map */ 55 el_action_t *current; /* The keymap we are using */ 56 const el_action_t *emacs; /* The default emacs key map */ 57 const el_action_t *vic; /* The vi command mode key map */ 58 const el_action_t *vii; /* The vi insert mode key map */
|
H A D | common.c | 54 protected el_action_t 68 protected el_action_t 110 protected el_action_t 137 protected el_action_t 186 protected el_action_t 206 protected el_action_t 228 protected el_action_t 251 protected el_action_t 276 protected el_action_t 304 protected el_action_t [all …]
|
H A D | emacs.c | 51 protected el_action_t 86 protected el_action_t 114 protected el_action_t 149 protected el_action_t 170 protected el_action_t 202 protected el_action_t 231 protected el_action_t 250 protected el_action_t 274 protected el_action_t 297 protected el_action_t [all …]
|
H A D | search.h | 59 protected el_action_t ce_inc_search(EditLine *, int); 60 protected el_action_t cv_search(EditLine *, int); 61 protected el_action_t ce_search_line(EditLine *, int); 62 protected el_action_t cv_repeat_srch(EditLine *, wint_t); 63 protected el_action_t cv_csearch(EditLine *, int, wint_t, int, int);
|
H A D | map.c | 63 static const el_action_t el_map_emacs[] = { 970 el_action_t *map = el->el_map.key; in map_init_nls() 986 el_action_t *map = el->el_map.key; in map_init_meta() 987 el_action_t *alt = el->el_map.alt; in map_init_meta() 1026 el_action_t *key = el->el_map.key; in map_init_vi() 1027 el_action_t *alt = el->el_map.alt; in map_init_vi() 1028 const el_action_t *vii = el->el_map.vii; in map_init_vi() 1029 const el_action_t *vic = el->el_map.vic; in map_init_vi() 1057 el_action_t *key = el->el_map.key; in map_init_emacs() 1058 el_action_t *alt = el->el_map.alt; in map_init_emacs() [all …]
|
H A D | el.h | 62 typedef unsigned char el_action_t; /* Index to command array */ typedef 84 el_action_t lastcmd; /* Previous command */ 85 el_action_t thiscmd; /* this command */
|
H A D | search.c | 199 protected el_action_t 208 el_action_t ret = CC_NORM; in ce_inc_search() 382 (el_action_t) newdir; in ce_inc_search() 445 protected el_action_t 501 el->el_state.lastcmd = (el_action_t) dir; /* avoid c_setpat */ in cv_search() 519 protected el_action_t 561 protected el_action_t 570 el->el_state.lastcmd = (el_action_t) c; /* Hack to stop c_setpat */ in cv_repeat_srch() 587 protected el_action_t
|
H A D | keymacro.h | 45 el_action_t cmd; /* If it is a command the # */ 69 protected void keymacro_clear(EditLine *, el_action_t *, const wchar_t *);
|
H A D | read.c | 70 static int read_getcmd(EditLine *, el_action_t *, wchar_t *); 159 read_getcmd(EditLine *el, el_action_t *cmdnum, wchar_t *ch) in read_getcmd() 162 el_action_t cmd; in read_getcmd() 384 el_action_t cmdnum = 0; in el_wgets()
|
H A D | hist.h | 74 protected el_action_t hist_get(EditLine *);
|
H A D | chared.h | 70 el_action_t cmd; /* command to redo */
|
H A D | keymacro.c | 131 el->el_keymacro.val.cmd = (el_action_t) cmd; in keymacro_map_cmd() 216 keymacro_clear(EditLine *el, el_action_t *map, const wchar_t *in) in keymacro_clear()
|
H A D | hist.c | 94 protected el_action_t
|
H A D | tty.c | 60 el_action_t bind[3]; /* emacs, vi, and vi-cmd */ 896 el_action_t *map, *alt; in tty_bind_char() 897 const el_action_t *dmap, *dalt; in tty_bind_char()
|
H A D | terminal.c | 1143 el_action_t *map; in terminal_bind_arrow() 1144 const el_action_t *dmap; in terminal_bind_arrow()
|
/openbsd/regress/lib/libedit/read/ |
H A D | test_getcmd.c | 41 el_action_t cmdnum; in main() 51 if ((el.el_map.key = calloc(N_KEYS, sizeof(el_action_t))) == NULL) in main()
|
/openbsd/regress/lib/libedit/chared/ |
H A D | test_gets.c | 42 el_action_t
|