From cabef475ab3889198b570f21f14527d8d89fa3c5 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 31 Aug 2019 23:19:04 +0530 Subject: [PATCH] Fix SEL_CYCLE (tab) --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 5169fb83..21c93c66 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3697,7 +3697,7 @@ nochange: case SEL_CTX3: // fallthrough case SEL_CTX4: if (sel == SEL_CYCLE) - fd = '>'; + fd = ']'; else if (sel >= SEL_CTX1 && sel <= SEL_CTX4) fd = sel - SEL_CTX1 + '1'; else