]> Sergey Matveev's repositories - nnn.git/commitdiff
Remove selmode indicator
authorArun Prakash Jana <engineerarun@gmail.com>
Mon, 30 Sep 2019 16:53:54 +0000 (22:23 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Mon, 30 Sep 2019 16:53:54 +0000 (22:23 +0530)
src/nnn.c

index 5302ac625668f2d0e060476516873413a42f92a9..84c0d5f788dada50f155db2d351e2a911dfe8ede 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3355,12 +3355,8 @@ static void redraw(char *path)
 
        if (ndents) {
                char sort[] = "\0 ";
-               char selmode[] = "\0 ";
                pEntry pent = &dents[cur];
 
-               if (cfg.selmode)
-                       selmode[0] = 'Y';
-
                if (cfg.mtimeorder)
                        sort[0] = cfg.mtime ? 'T' : 'A';
                else if (cfg.sizeorder)
@@ -3383,8 +3379,8 @@ static void redraw(char *path)
                        xstrlcpy(buf, coolsize(dir_blocks << BLK_SHIFT), 12);
                        c = cfg.apparentsz ? 'a' : 'd';
 
-                       mvprintw(lastln, 0, "%d/%d (%d) %s%cu:%s free:%s files:%lu %s",
-                                cur + 1, ndents, nselected, selmode, c, buf,
+                       mvprintw(lastln, 0, "%d/%d (%d) %cu:%s free:%s files:%lu %s",
+                                cur + 1, ndents, nselected, c, buf,
                                 coolsize(get_fs_info(path, FREE)), num_files, ptr);
                } else { /* light or detail mode */
                        /* Show filename as it may be truncated in directory listing */
@@ -3394,8 +3390,8 @@ static void redraw(char *path)
                        /* Timestamp */
                        strftime(buf, 18, "%Y-%b-%d %R", localtime(&pent->t));
 
-                       mvprintw(lastln, 0, "%d/%d (%d) %s%s%s %s %s %s [%s]",
-                                cur + 1, ndents, nselected, selmode, sort, buf,
+                       mvprintw(lastln, 0, "%d/%d (%d) %s%s %s %s %s [%s]",
+                                cur + 1, ndents, nselected, sort, buf,
                                 get_lsperms(pent->mode), coolsize(pent->size), ptr, base);
                }
        } else