From 7f3d2c10aaabee34cfda435c199335f023215fba Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 20 Dec 2019 00:01:50 +0530 Subject: [PATCH] Prefer NNN_USE_EDITOR over opener (option ) --- src/nnn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index cf2826fd..8f2d53fb 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -5814,8 +5814,8 @@ int main(int argc, char *argv[]) } } - /* Edit text in EDITOR if opted (and opener is not all-CLI) */ - if (!cfg.cliopener && xgetenv_set(env_cfg[NNN_USE_EDITOR])) + /* Edit text in "editor" if opted (gets preference over option `-c`) */ + if (xgetenv_set(env_cfg[NNN_USE_EDITOR])) cfg.useeditor = 1; /* Get VISUAL/EDITOR */