]> Sergey Matveev's repositories - nnn.git/commitdiff
Consistent comments capitalization
authorlostd <lostd@2f30.org>
Fri, 10 Oct 2014 11:59:30 +0000 (14:59 +0300)
committerlostd <lostd@2f30.org>
Fri, 10 Oct 2014 11:59:30 +0000 (14:59 +0300)
noice.c

diff --git a/noice.c b/noice.c
index c016d9ac4e1e5494d1d75badcfcec6d522ea0fbc..a0e98fcb1bc8b718d5e886a0be81edde40a16f7a 100644 (file)
--- a/noice.c
+++ b/noice.c
@@ -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'):