diff options
| author | 2014-10-10 14:59:30 +0300 | |
|---|---|---|
| committer | 2014-10-10 14:59:30 +0300 | |
| commit | e9489496249aaf31940c7906104ab1222f77447c (patch) | |
| tree | da6151fb20420636a636506e731b8af521bf1e15 | |
| parent | bfd5f9b1d45268106210cafa28a445d8c035e36f (diff) | |
| download | nnn-e9489496249aaf31940c7906104ab1222f77447c.tar.gz | |
Consistent comments capitalization
| -rw-r--r-- | noice.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -200,29 +200,29 @@ nextsel(int *cur, int max) switch (c) { case 'q': return SEL_QUIT; - /* back */ + /* Back */ case KEY_BACKSPACE: case KEY_LEFT: case 'h': return SEL_BACK; - /* inside */ + /* Inside */ case KEY_ENTER: case '\r': case KEY_RIGHT: case 'l': return SEL_GOIN; - /* filter */ + /* Filter */ case '/': case '&': return SEL_FLTR; - /* next */ + /* Next */ case 'j': case KEY_DOWN: case CONTROL('N'): if (*cur < max - 1) (*cur)++; break; - /* prev */ + /* Previous */ case 'k': case KEY_UP: case CONTROL('P'): |