Sfoglia il codice sorgente

Enable extra shortcuts in navigate-as-you-type mode

Enabled functionality:

- Copy file path (^K)
- Run desktop search utility (^/)
- Rename file (^R)
- Open with... (^O)
- Pin current directory (^B)
- Visit pinned directory (^V)
- Extract archive (^X)
master
Arun Prakash Jana 7 anni fa
parent
commit
2e7722976b
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. +7
    -0
      nnn.c

+ 7
- 0
nnn.c Vedi File

@@ -982,6 +982,13 @@ filterentries(char *path)
case CONTROL('L'): case CONTROL('L'):
if (len == 1) if (len == 1)
cur = oldcur; // fallthrough cur = oldcur; // fallthrough
case CONTROL('K'): // fallthrough
case CONTROL('O'): // fallthrough
case CONTROL('B'): // fallthrough
case CONTROL('V'): // fallthrough
case CONTROL('R'): // fallthrough
case CONTROL('X'): // fallthrough
case CONTROL('_'): // fallthrough
case CONTROL('Q'): case CONTROL('Q'):
goto end; goto end;
default: default:


||||||
x
 
000:0
Loading…
Annulla
Salva