소스 검색

Key Lead' to go to first file in dir

master
Arun Prakash Jana 5 년 전
부모
커밋
8bc71c6e5b
No known key found for this signature in database GPG 키 ID: A75979F35C080412
2개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      README.md
  2. +10
    -0
      src/nnn.c

+ 1
- 0
README.md 파일 보기

@@ -323,6 +323,7 @@ The Leader/Lead key provides a powerful multi-functional navigation mechanism. I
| <kbd>></kbd>, <kbd>.</kbd> | Go to next active context |
| <kbd><</kbd>, <kbd>,</kbd> | Go to previous active context |
| key | Go to bookmarked location |
| <kbd>'</kbd> | Go to first file in directory |
| <kbd>~</kbd> <kbd>`</kbd> <kbd>@</kbd> <kbd>-</kbd> | Go to HOME, `/`, start, last visited dir |
| <kbd>q</kbd> | Quit context |



+ 10
- 0
src/nnn.c 파일 보기

@@ -3669,6 +3669,16 @@ nochange:
case '@':
presel = fd;
goto nochange;
case '\'':
for (r = 0; r < ndents; ++r) {
if (!(dents[r].flags & DIR_OR_LINK_TO_DIR)) {
move_cursor((r) % ndents, 0);
break;
}
}
if (r != ndents)
continue;;
goto nochange;
case '>': // fallthrough
case '.': // fallthrough
case '<': // fallthrough


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