Home
last modified time | relevance | path

Searched refs:keyseq (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/usr.bin/texinfo/info/
H A Dinfodoc.c795 pretty_keyseq (char *keyseq)
800 if (*keyseq)
811 keyseq += strlen(term_kP);
816 keyseq += strlen(term_kN);
822 keyseq += strlen(term_kh);
827 keyseq += strlen(term_ke);
832 keyseq += strlen(term_ki);
837 keyseq += strlen(term_kx);
843 keyseq += strlen(term_ku);
863 keyseq++;
[all …]
H A Ddoc.h44 char *keyseq; member
98 extern char *pretty_keyseq (char *keyseq);
H A Dinfomap.c94 const char *keyseq, Keymap rootmap) in add_function_keyseq() argument
105 ks->keyseq = xstrdup(keyseq); in add_function_keyseq()
111 const char *keyseq, Keymap rootmap) in remove_function_keyseq() argument
121 if (k->map == rootmap && strcmp(k->keyseq, keyseq) == 0) in remove_function_keyseq()
206 const char *keyseq, KEYMAP_ENTRY *keyentry) in keymap_bind_keyseq() argument
209 const unsigned char *s = (unsigned char *) keyseq; in keymap_bind_keyseq()
264 add_function_keyseq (keyentry->function, keyseq, map); in keymap_bind_keyseq()
1690 unsigned char keyseq[256]; in section_to_keymaps() local
1699 if (decode_keys(seq, seqlen, keyseq, in section_to_keymaps()
1700 sizeof keyseq)) in section_to_keymaps()
[all …]
H A Dsession.c4486 dispatch_error (char *keyseq) in dispatch_error() argument
4490 rep = pretty_keyseq (keyseq); in dispatch_error()
/openbsd/gnu/lib/libreadline/
H A Dbind.c206 rl_set_key (keyseq, function, map) in rl_set_key() argument
207 const char *keyseq; in rl_set_key()
218 rl_macro_bind (keyseq, macro, map) in rl_macro_bind() argument
219 const char *keyseq, *macro; in rl_macro_bind()
244 const char *keyseq;
256 if (!keyseq || !*keyseq)
571 const char *keyseq; in rl_function_of_keyseq()
580 for (i = 0; keyseq && keyseq[i]; i++)
604 if (!keyseq[i + 1])
2121 const char *keyseq; in _rl_bind_if_unbound()
[all …]
/openbsd/gnu/lib/libreadline/doc/
H A Drltech.texinfo681 @deftypefun int rl_set_key (const char *keyseq, rl_command_func_t *function, Keymap map)
682 Bind the key sequence represented by the string @var{keyseq} to the function
687 @deftypefun int rl_generic_bind (int type, const char *keyseq, char *data, Keymap map)
688 Bind the key sequence represented by the string @var{keyseq} to the arbitrary
717 @deftypefun {rl_command_func_t *} rl_function_of_keyseq (const char *keyseq, Keymap map, int *type)
718 Return the function invoked by @var{keyseq} in keymap @var{map}.
1080 @deftypefun int rl_macro_bind (const char *keyseq, const char *macro, Keymap map)
1081 Bind the key sequence @var{keyseq} to invoke the macro @var{macro}.
1082 The binding is performed in @var{map}. When @var{keyseq} is invoked, the
H A Drluser.texinfo617 @item @w{"@var{keyseq}": @var{function-name} or @var{macro}}
618 @var{keyseq} differs from @var{keyname} above in that strings
/openbsd/lib/libedit/
H A Dreadline.c2260 rl_generic_bind(int type, const char * keyseq, const char * data, Keymap k) in rl_generic_bind() argument