Home
last modified time | relevance | path

Searched refs:rl_insert (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/lib/libreadline/
H A Dvi_keymap.c317 { ISFUNC, rl_insert }, /* Control-a */
318 { ISFUNC, rl_insert }, /* Control-b */
319 { ISFUNC, rl_insert }, /* Control-c */
321 { ISFUNC, rl_insert }, /* Control-e */
322 { ISFUNC, rl_insert }, /* Control-f */
323 { ISFUNC, rl_insert }, /* Control-g */
327 { ISFUNC, rl_insert }, /* Control-k */
328 { ISFUNC, rl_insert }, /* Control-l */
330 { ISFUNC, rl_insert }, /* Control-n */
331 { ISFUNC, rl_insert }, /* Control-o */
[all …]
H A Demacs_keymap.c70 { ISFUNC, rl_insert }, /* SPACE */
71 { ISFUNC, rl_insert }, /* ! */
72 { ISFUNC, rl_insert }, /* " */
73 { ISFUNC, rl_insert }, /* # */
74 { ISFUNC, rl_insert }, /* $ */
75 { ISFUNC, rl_insert }, /* % */
76 { ISFUNC, rl_insert }, /* & */
77 { ISFUNC, rl_insert }, /* ' */
78 { ISFUNC, rl_insert }, /* ( */
79 { ISFUNC, rl_insert }, /* ) */
[all …]
H A Dkeymaps.c105 newmap[i].function = rl_insert; in rl_make_keymap()
107 newmap[TAB].function = rl_insert; in rl_make_keymap()
114 newmap[i].function = rl_insert; in rl_make_keymap()
118 newmap[i].function = rl_insert; in rl_make_keymap()
H A Dparens.c87 rl_bind_key_in_map (')', rl_insert, emacs_standard_keymap);
88 rl_bind_key_in_map (']', rl_insert, emacs_standard_keymap);
89 rl_bind_key_in_map ('}', rl_insert, emacs_standard_keymap);
H A Dfunmap.c124 { "self-insert", rl_insert },
H A Dinput.c322 _rl_keymap[key].function == rl_insert)
H A Dreadline.h102 extern int rl_insert PARAMS((int, int));
H A Dreadline.c575 _rl_suppress_redisplay = (map[key].function == rl_insert) && _rl_input_available ();
H A Dtext.c825 rl_insert (count, c) in rl_insert() function
/openbsd-src/lib/libedit/readline/
H A Dreadline.h179 int rl_insert(int, int);
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/
H A Dtui.c264 return rl_insert (count, key); in tui_rl_command_mode()
/openbsd-src/lib/libedit/
H A Dreadline.c1842 if (func == rl_insert) { in rl_bind_key()
1884 rl_insert(int count, int c) in rl_insert() function
1921 return rl_insert(1, '\n'); in rl_newline()
/openbsd-src/gnu/lib/libreadline/doc/
H A Drltech.texinfo148 call when @var{key} is pressed. Binding @key{TAB} to @code{rl_insert()}
155 @code{rl_bind_key ('\t', rl_insert);}
604 Return a new keymap with the printing characters bound to rl_insert,