From c5f0a25e7e8bf09df7f495af907f8a7d4f967cbd Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 8 Jun 2020 21:56:33 +0530 Subject: [PATCH] Simplify subdir creation --- plugins/README.md | 2 +- src/nnn.c | 39 ++++++++++++--------------------------- 2 files changed, 13 insertions(+), 28 deletions(-) diff --git a/plugins/README.md b/plugins/README.md index bb90a268..aa6749d2 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -4,7 +4,7 @@

read ebooks with plugin gutenread (Android)

-

Live Previews

+

Live Previews asciicast

## Introduction diff --git a/src/nnn.c b/src/nnn.c index 0d518a52..49fd70bd 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -629,14 +629,14 @@ static char mv[] = "mv -i"; #endif /* Tokens used for path creation */ -#define TOK_PLG 0 -#define TOK_SSN 1 -#define TOK_MNT 2 +#define TOK_SSN 0 +#define TOK_MNT 1 +#define TOK_PLG 2 static const char * const toks[] = { - "plugins", "sessions", "mounts", + "plugins", /* must be the last entry */ }; /* Patterns */ @@ -6873,29 +6873,14 @@ static bool setup_config(void) xstrsncpy(cfgpath + r - 1, "/nnn", len - r); DPRINTF_S(cfgpath); - /* Create ~/.config/nnn/plugins */ - mkpath(cfgpath, toks[TOK_PLG], plgpath); - if (!xmktree(plgpath, TRUE)) { - xerror(); - return FALSE; - } - - /* Create ~/.config/nnn/sessions */ - char ssnpath[len]; - - mkpath(cfgpath, toks[TOK_SSN], ssnpath); - if (!xmktree(ssnpath, TRUE)) { - xerror(); - return FALSE; - } - - /* Create ~/.config/nnn/mounts */ - char mntpath[len]; - - mkpath(cfgpath, toks[TOK_MNT], mntpath); - if (!xmktree(mntpath, TRUE)) { - xerror(); - return FALSE; + /* Create sessions, mounts and plugins directories */ + for (r = 0; r < ELEMENTS(toks); ++r) { + mkpath(cfgpath, toks[r], plgpath); + if (!xmktree(plgpath, TRUE)) { + DPRINTF_S(toks[r]); + xerror(); + return FALSE; + } } /* Set selection file path */