Browse Source

order toggle: show invalid key prompt (#433)

* order toggle: show invalid key prompt

* don't call statusbar()
master
Maxim Baz Mischievous Meerkat 5 years ago
parent
commit
101d4e8a07
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/nnn.c

+ 3
- 1
src/nnn.c View File

@@ -5033,7 +5033,9 @@ nochange:
namecmpfn = (namecmpfn == &xstrverscasecmp) ? &xstricmp : &xstrverscasecmp;
break;
default:
cfg.filtermode ? presel = FILTER : statusbar(path);
if (cfg.filtermode)
presel = FILTER;
printwait(messages[MSG_INVALID_KEY], &presel);
goto nochange;
}
}


Loading…
Cancel
Save