소스 검색

Add Space as 2nd file-path copier key (easy to use)

master
Arun Prakash Jana 7 년 전
부모
커밋
9a7660fb62
No known key found for this signature in database GPG 키 ID: A75979F35C080412
4개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      README.md
  2. +1
    -1
      nnn.1
  3. +1
    -1
      nnn.c
  4. +1
    -0
      nnn.h

+ 1
- 1
README.md 파일 보기

@@ -244,7 +244,7 @@ optional arguments:
f | Archive entry
F | List archive
^F | Extract archive
^K | Copy file path
Space, ^K | Copy file path
^Y | Toggle multi-copy
^T | Toggle path quote
^L | Redraw, clear prompt


+ 1
- 1
nnn.1 파일 보기

@@ -105,7 +105,7 @@ Archive current entry
List files in archive
.It Ic ^F
Extract archive in current directory
.It Ic ^K
.It Ic Space, ^K
Invoke file path copier
.It Ic ^Y
Toggle multiple file path copy mode


+ 1
- 1
nnn.c 파일 보기

@@ -1952,7 +1952,7 @@ show_help(char *path)
"ef | Archive entry\n"
"eF | List archive\n"
"d^F | Extract archive\n"
"d^K | Copy file path\n"
"6Space, ^K | Copy file path\n"
"d^Y | Toggle multi-copy\n"
"d^T | Toggle path quote\n"
"d^L | Redraw, clear prompt\n"


+ 1
- 0
nnn.h 파일 보기

@@ -156,6 +156,7 @@ static struct key bindings[] = {
{ KEY_F(5), SEL_REDRAW, "", "" }, /* Undocumented */
/* Copy currently selected file path */
{ CONTROL('K'), SEL_COPY, "", "" },
{ ' ', SEL_COPY, "", "" },
/* Toggle copy multiple file paths */
{ CONTROL('Y'), SEL_COPYMUL, "", "" },
/* Toggle quote on while copy */


불러오는 중...
취소
저장