Ver código fonte

Treat ~ as special shortcut in filterentries

master
Arun Prakash Jana 5 anos atrás
pai
commit
dd5b419742
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
2 arquivos alterados com 4 adições e 1 exclusões
  1. +2
    -0
      nnn.1
  2. +2
    -1
      src/nnn.c

+ 2
- 0
nnn.1 Ver arquivo

@@ -189,6 +189,8 @@ Special keys at empty filter prompt:
- run a plugin by its key: ';'
.br
- pin current directory: ','
.br
- go HOME: '~'
.Pp
Other noteworthy keys:
.Pp


+ 2
- 1
src/nnn.c Ver arquivo

@@ -2499,9 +2499,10 @@ static int filterentries(char *path, char *lastname)
if (len == 1) {
switch (*ch) {
case '=': // fallthrough /* Launch app */
case ']': // fallthorugh /*Prompt key */
case ']': // fallthorugh /* Prompt key */
case ';': // fallthrough /* Run plugin key */
case ',': // fallthrough /* Pin CWD */
case '~': // fallthrough /* Go HOME */
case '?': /* Help and config key, '?' is an invalid regex */
goto end;
}


Carregando…
Cancelar
Salvar