Ver código fonte

Case-insensitive Ctrl-key handling, man page update

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

+ 2
- 2
nnn.1 Ver arquivo

@@ -380,11 +380,11 @@ separated by \fI;\fR:
export NNN_MCLICK='p'

NOTES:
1. You can use the '^\fIkey\fR' syntax to assign it to a \fICtrl+key\fR combo, e.g.:
1. To specify a \fICtrl+key\fR combo:

export NNN_MCLICK='^A'

2. Otherwise, only the first character is taken into account.
2. Otherwise, only the first character is considered.
.Ed
.Pp
\fBnnn:\fR this is a special variable set to the hovered entry before executing


+ 1
- 1
src/nnn.h Ver arquivo

@@ -32,7 +32,7 @@

#include <curses.h>

#define CONTROL(c) ((c) ^ 0x40)
#define CONTROL(c) ((c) & 0x1f)

/* Supported actions */
enum action {


Carregando…
Cancelar
Salvar