nnn/patches/gitstatus/mainline.diff

204 lines
6.3 KiB
Diff
Raw Normal View History

2021-06-05 14:21:01 +00:00
# Description: Add git status column to detail mode. Provides additional
# command line flag -G which will render the git status
# column also in normal mode. nnn.vim users may consider
# adding `let g:nnn#command = 'nnn -G' to their vim config.
#
2021-07-06 00:01:19 +00:00
# Authors: Luuk van Baal, @crides
diff --git a/src/nnn.c b/src/nnn.c
2021-09-29 09:33:19 +00:00
index 88263beb..597ff2b3 100644
--- a/src/nnn.c
+++ b/src/nnn.c
2021-09-29 09:33:19 +00:00
@@ -285,6 +285,7 @@ typedef struct entry {
uid_t uid; /* 4 bytes */
2021-06-03 15:07:07 +00:00
gid_t gid; /* 4 bytes */
#endif
2021-07-06 00:01:19 +00:00
+ char git_status[2];
2021-06-03 15:07:07 +00:00
} *pEntry;
2021-08-16 10:45:44 +00:00
/* Selection marker */
2021-09-29 09:33:19 +00:00
@@ -341,6 +342,7 @@ typedef struct {
2021-06-05 14:21:01 +00:00
uint_t cliopener : 1; /* All-CLI app opener */
uint_t waitedit : 1; /* For ops that can't be detached, used EDITOR */
uint_t rollover : 1; /* Roll over at edges */
+ uint_t normalgit : 1; /* Show git status in normal mode */
} settings;
2021-07-06 00:01:19 +00:00
/* Non-persistent program-internal states (alphabeical order) */
2021-09-29 09:33:19 +00:00
@@ -390,7 +392,17 @@ typedef struct {
} session_header_t;
#endif
+typedef struct {
2021-07-06 00:01:19 +00:00
+ char status[2];
+ char path[PATH_MAX];
+} git_status_t;
+
/* GLOBALS */
2021-07-06 00:01:19 +00:00
+struct {
+ bool show;
+ size_t len;
+ git_status_t *statuses;
+} git_statuses;
/* Configuration, contexts */
static settings cfg = {
2021-09-29 09:33:19 +00:00
@@ -421,6 +433,7 @@ static settings cfg = {
2021-06-05 14:21:01 +00:00
0, /* cliopener */
0, /* waitedit */
1, /* rollover */
+ 0, /* normalgit */
};
static context g_ctx[CTX_MAX] __attribute__ ((aligned));
2021-09-29 09:33:19 +00:00
@@ -3814,6 +3827,38 @@ static int get_kv_key(kv *kvarr, char *val, uchar_t max, uchar_t id)
return -1;
}
2021-07-06 00:01:19 +00:00
+static size_t get_git_statuses(const char *path)
+{
+ static char gitrev[] = "git rev-parse --show-toplevel 2>/dev/null";
2021-09-29 09:33:19 +00:00
+ char workdir[PATH_MAX], *ret;
2021-07-06 00:01:19 +00:00
+ FILE *fp = popen(gitrev, "r");
2021-06-17 23:32:44 +00:00
+
2021-09-29 09:33:19 +00:00
+ ret = fgets(workdir, PATH_MAX, fp);
2021-07-06 00:01:19 +00:00
+ pclose(fp);
2021-09-29 09:33:19 +00:00
+ if (!ret)
2021-07-06 00:01:19 +00:00
+ return 0;
+
2021-07-06 00:01:19 +00:00
+ static char gitstat[] = "git -c core.quotePath= status --porcelain --ignored=matching -u ";
+ char pathspec[PATH_MAX], status[PATH_MAX];
+ size_t i = -1;
+ git_statuses.show = FALSE;
+ workdir[xstrlen(workdir) - 1] = '\0';
2021-08-17 12:01:24 +00:00
+ snprintf(pathspec, PATH_MAX, "%s\"%s\"%s 2>/dev/null", gitstat, path, cfg.showhidden ? "" : "/*");
2021-07-06 00:01:19 +00:00
+ fp = popen(pathspec, "r");
+
+ while (fgets(status, PATH_MAX, fp)) {
+ size_t pathindex = (status[3] == '"') ? 4 : 3;
+ status[xstrlen(status) - pathindex + 2] = '\0';
+ git_statuses.statuses = xrealloc(git_statuses.statuses, sizeof(git_status_t) * (++i + 1));
+ git_statuses.statuses[i].status[0] = (status[0] == ' ') ? '-' : status[0];
+ git_statuses.statuses[i].status[1] = (status[1] == ' ') ? '-' : status[1];
+ mkpath(workdir, status + pathindex, git_statuses.statuses[i].path);
+ }
+
2021-07-06 00:01:19 +00:00
+ pclose(fp);
+ return (i + 1);
+}
+
static void resetdircolor(int flags)
{
/* Directories are always shown on top, clear the color when moving to first file */
2021-09-29 09:33:19 +00:00
@@ -4151,6 +4196,10 @@ static void printent(const struct entry *ent, uint_t namecols, bool sel)
2021-06-05 14:21:01 +00:00
uchar_t color_pair = get_color_pair_name_ind(ent, &ind, &attrs);
2021-07-06 00:01:19 +00:00
+ if (git_statuses.show && (cfg.showdetail || cfg.normalgit))
+ printw("%*s%c%c", (cfg.normalgit && !cfg.showdetail) ? 1 : 0, "",
+ ent->git_status[0], ent->git_status[1]);
+
2021-06-05 14:21:01 +00:00
addch((ent->flags & FILE_SELECTED) ? '+' | A_REVERSE | A_BOLD : ' ');
2021-06-05 14:21:01 +00:00
if (g_state.oldcolor)
2021-09-29 09:33:19 +00:00
@@ -5548,6 +5597,11 @@ static int dentfill(char *path, struct entry **ppdents)
attron(COLOR_PAIR(cfg.curctx + 1));
}
2021-07-06 00:01:19 +00:00
+ char linkpath[PATH_MAX];
+ if ((git_statuses.len = get_git_statuses(path)))
2021-09-29 09:33:19 +00:00
+ if (!realpath(path, linkpath))
+ printwarn(NULL);
+
#if _POSIX_C_SOURCE >= 200112L
posix_fadvise(fd, 0, 0, POSIX_FADV_SEQUENTIAL);
#endif
2021-09-29 09:33:19 +00:00
@@ -5746,6 +5800,36 @@ static int dentfill(char *path, struct entry **ppdents)
#endif
}
+ if (git_statuses.len) {
2021-09-29 09:33:19 +00:00
+ char dentpath[PATH_MAX], prefix[PATH_MAX + 1];
+ size_t pathlen = mkpath(linkpath, dentp->name, dentpath);
+ snprintf(prefix, PATH_MAX + 1, "%s/", dentpath);
2021-07-06 00:01:19 +00:00
+ dentp->git_status[0] = dentp->git_status[1] = '-';
+
+ if (dentp->flags & DIR_OR_DIRLNK) {
+ for (size_t i = 0; i < git_statuses.len; ++i)
2021-09-29 09:33:19 +00:00
+ if (is_prefix(git_statuses.statuses[i].path, prefix, pathlen)) {
+ if ((dentp->git_status[0] == '-') && (git_statuses.statuses[i].status[0] != '-'))
+ dentp->git_status[0] = git_statuses.statuses[i].status[0];
+ if ((dentp->git_status[1] == '-') && (git_statuses.statuses[i].status[1] != '-'))
+ dentp->git_status[1] = git_statuses.statuses[i].status[1];
+ if (git_statuses.statuses[i].status[1] != '!')
2021-06-17 23:32:44 +00:00
+ git_statuses.show = TRUE;
2021-09-29 09:33:19 +00:00
+ if ((dentp->git_status[0] != '-') && (dentp->git_status[1] != '-'))
+ break;
2021-06-17 23:32:44 +00:00
+ }
2021-07-06 00:01:19 +00:00
+ } else {
+ for (size_t i = 0; i < git_statuses.len; ++i)
+ if (!xstrcmp(git_statuses.statuses[i].path, dentpath)) {
+ dentp->git_status[0] = git_statuses.statuses[i].status[0];
+ dentp->git_status[1] = git_statuses.statuses[i].status[1];
+ if (dentp->git_status[1] != '!')
+ git_statuses.show = TRUE;
+ break;
+ }
+ }
+ }
+
++ndents;
} while ((dp = readdir(dirp)));
2021-09-29 09:33:19 +00:00
@@ -6270,11 +6354,12 @@ static int adjust_cols(int n)
#endif
if (cfg.showdetail) {
/* Fallback to light mode if less than 35 columns */
- if (n < 36)
+ if (n < 38)
cfg.showdetail ^= 1;
2021-07-06 00:01:19 +00:00
else /* 2 more accounted for below */
- n -= 32;
2021-07-06 00:01:19 +00:00
- }
2021-06-17 23:32:44 +00:00
+ n -= (git_statuses.show ? 34 : 32);
2021-07-06 00:01:19 +00:00
+ } else if (cfg.normalgit && git_statuses.show)
+ n -= 3;
2021-06-05 14:21:01 +00:00
/* 2 columns for preceding space and indicator */
2021-07-06 00:01:19 +00:00
return (n - 2);
2021-09-29 09:33:19 +00:00
@@ -8034,6 +8119,7 @@ static void usage(void)
2021-07-06 00:01:19 +00:00
" -F val fifo mode [0:preview 1:explore]\n"
2021-06-05 14:21:01 +00:00
#endif
" -g regex filters\n"
+ " -G always show git status\n"
" -H show hidden files\n"
" -J no auto-proceed on select\n"
" -K detect key collision\n"
2021-09-29 09:33:19 +00:00
@@ -8174,6 +8260,7 @@ static void cleanup(void)
free(hostname);
}
#endif
2021-07-06 00:01:19 +00:00
+ free(git_statuses.statuses);
free(selpath);
free(plgpath);
free(cfgpath);
2021-09-29 09:33:19 +00:00
@@ -8218,7 +8305,7 @@ int main(int argc, char *argv[])
2021-06-05 14:21:01 +00:00
while ((opt = (env_opts_id > 0
? env_opts[--env_opts_id]
2021-06-20 08:59:07 +00:00
- : getopt(argc, argv, "aAb:cCdDeEfF:gHJKl:nop:P:QrRs:St:T:uUVwxh"))) != -1) {
+ : getopt(argc, argv, "aAb:cCdDeEfF:gGHJKl:nop:P:QrRs:St:T:uUVwxh"))) != -1) {
2021-06-05 14:21:01 +00:00
switch (opt) {
#ifndef NOFIFO
case 'a':
2021-09-29 09:33:19 +00:00
@@ -8269,6 +8356,9 @@ int main(int argc, char *argv[])
2021-06-05 14:21:01 +00:00
cfg.regex = 1;
filterfn = &visible_re;
break;
+ case 'G':
+ cfg.normalgit = 1;
+ break;
case 'H':
cfg.showhidden = 1;
break;