Lines Matching refs:keyseq

1189 				 const char *keyseq);
1191 const char *name, const char *keyseq);
2117 char keyseq[2];
2129 keyseq[0] = c;
2130 keyseq[1] = '\0';
2137 if(_kt_set_keybinding(gl->bindings, binder, keyseq, action)) {
6479 const char *keyseq = NULL;
6484 keyseq = argv[1];
6488 if(_kt_set_keybinding(gl->bindings, who, keyseq, action)) {
8185 char keyseq[GL_KEY_MAX+1]; /* A special key sequence being read */
8219 keyseq[nkey++] = GL_ESC_CHAR;
8227 keyseq[nkey++] = '\\';
8230 * Compose a potentially multiple key-sequence in gl->keyseq.
8242 keyseq[nkey++] = GL_ESC_CHAR;
8249 keyseq[nkey++] = c;
8254 if(keyseq[0] == GL_ESC_CHAR && !gl->vi.command)
8259 switch(_kt_lookup_keybinding(gl->bindings, keyseq, nkey, &keysym, &nsym)) {
8327 if(keyseq[0] != '\\' && keyseq[0] != '\t') {
10875 * keyseq const char * Either NULL, or a key sequence with which
10884 int list_only, const char *name, const char *keyseq)
10903 status = _gl_completion_action(gl, data, match_fn, list_only, name, keyseq);
10918 const char *keyseq)
10976 if(keyseq && _kt_set_keybinding(gl->bindings, KTB_NORM, keyseq, name)) {
11001 * keyseq const char * The key sequence with which to invoke
11010 const char *name, const char *keyseq)
11029 status = _gl_register_action(gl, data, fn, name, keyseq);
11043 const char *name, const char *keyseq)
11103 if(keyseq && _kt_set_keybinding(gl->bindings, KTB_NORM, keyseq, name)) {
12400 int gl_bind_keyseq(GetLine *gl, GlKeyOrigin origin, const char *keyseq,
12407 if(!gl || !keyseq) {
12427 if(keyseq && _kt_set_keybinding(gl->bindings, binder, keyseq, action)) {