From: Arun Prakash Jana Date: Sun, 31 May 2020 07:56:39 +0000 (+0530) Subject: Set the corrent keybind for plugin X-Git-Tag: v3.3~86 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=984cffecc4698189ace594a14c03625e218eb735;p=nnn.git Set the corrent keybind for plugin --- diff --git a/src/nnn.c b/src/nnn.c index 69cf19d7..98f6d2ac 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -2328,7 +2328,7 @@ static int nextsel(int presel) c = getch(); if (c != ERR) { ungetch(c); - c = CONTROL('S'); + c = ';'; } else c = 27; settimeout(); @@ -2603,7 +2603,7 @@ static int filterentries(char *path, char *lastname) case 27: /* Exit filter mode on Escape and Alt+key */ if (handle_alt_key(ch) != ERR) { unget_wch(*ch); - *ch = CONTROL('S'); + *ch = ';'; } goto end; }