Browse Source

Add emacs-like keybinds for next/prev entry selection

master
sin 10 years ago
parent
commit
dc711f2fad
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      noice.c

+ 3
- 0
noice.c View File

@@ -34,6 +34,7 @@
#define LEN(x) (sizeof(x) / sizeof(*(x))) #define LEN(x) (sizeof(x) / sizeof(*(x)))
#define MIN(x, y) ((x) < (y) ? (x) : (y)) #define MIN(x, y) ((x) < (y) ? (x) : (y))
#define ISODD(x) ((x) & 1) #define ISODD(x) ((x) & 1)
#define CONTROL(c) ((c) ^ 0x40)


struct assoc { struct assoc {
char *regex; /* Regex to match on filename */ char *regex; /* Regex to match on filename */
@@ -182,12 +183,14 @@ nextsel(int *cur, int max)
/* next */ /* next */
case 'j': case 'j':
case KEY_DOWN: case KEY_DOWN:
case CONTROL('N'):
if (*cur < max - 1) if (*cur < max - 1)
(*cur)++; (*cur)++;
break; break;
/* prev */ /* prev */
case 'k': case 'k':
case KEY_UP: case KEY_UP:
case CONTROL('P'):
if (*cur > 0) if (*cur > 0)
(*cur)--; (*cur)--;
break; break;


Loading…
Cancel
Save