Przeglądaj źródła

Go to start dir key is '@' now

master
Arun Prakash Jana 5 lat temu
rodzic
commit
54c89ca2a1
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: A75979F35C080412
3 zmienionych plików z 7 dodań i 7 usunięć
  1. +4
    -4
      README.md
  2. +2
    -2
      src/nnn.c
  3. +1
    -1
      src/nnn.h

+ 4
- 4
README.md Wyświetl plik

@@ -81,7 +81,7 @@ It runs on Linux, macOS, Raspberry Pi, BSD, Cygwin, Linux subsystem for Windows
- Contexts (_aka_ tabs _aka_ workspaces)
- *Navigate-as-you-type* with auto-select directory
- Bookmarks
- Familiar, easy shortcuts (arrows, `~`, `-`, `&`)
- Familiar, easy shortcuts (arrows, `~`, `-`, `@`)
- Pin and visit a directory
- Sorting
- Directories always listed on top
@@ -196,7 +196,7 @@ Option completion scripts for Bash, Fish and Zsh can be found in respective subd
#### Cmdline options

```
usage: nnn [-b key] [-C] [-e] [-i] [-l] [-n]
usage: nnn [-b key] [-d] [-e] [-i] [-l] [-n]
[-p file] [-s] [-S] [-v] [-w] [-h] [PATH]

The missing terminal file manager for X.
@@ -228,7 +228,7 @@ Press <kbd>?</kbd> in `nnn` to see the list anytime.
↑ k Up PgUp ^U Scroll up
↓ j Down PgDn ^D Scroll down
← h Parent dir ~ Go HOME
↵ → l Open file/dir & Start dir
↵ → l Open file/dir @ Start dir
Home g ^A First entry - Last visited dir
End G ^E Last entry . Toggle show hidden
/ Filter Ins ^T Toggle nav-as-you-type
@@ -271,7 +271,7 @@ The Leader key (<kbd>`</kbd> or <kbd>^/</kbd>) provides a powerful multi-functio
| key | Go to bookmarked location |
| <kbd>~</kbd> | Go to HOME directory |
| <kbd>-</kbd> | Go to last visited directory |
| <kbd>&</kbd> | Go to start directory |
| <kbd>@</kbd> | Go to start directory |
| <kbd>q</kbd> | Quit context |

#### Contexts


+ 2
- 2
src/nnn.c Wyświetl plik

@@ -2361,7 +2361,7 @@ static bool show_help(const char *path)
"a↑ k Up PgUp ^U Scroll up\n"
"a↓ j Down PgDn ^D Scroll down\n"
"a← h Parent dir ~ Go HOME\n"
"8↵ → l Open file/dir & Start dir\n"
"8↵ → l Open file/dir @ Start dir\n"
"4Home g ^A First entry - Last visited dir\n"
"5End G ^E Last entry . Toggle show hidden\n"
"c/ Filter Ins ^T Toggle nav-as-you-type\n"
@@ -3130,7 +3130,7 @@ nochange:
case 'q': // fallthrough
case '~': // fallthrough
case '-': // fallthrough
case '&':
case '@':
presel = fd;
goto nochange;
case '>': // fallthrough


+ 1
- 1
src/nnn.h Wyświetl plik

@@ -138,7 +138,7 @@ static struct key bindings[] = {
/* HOME */
{ '~', SEL_CDHOME },
/* Initial directory */
{ '&', SEL_CDBEGIN },
{ '@', SEL_CDBEGIN },
/* Last visited dir */
{ '-', SEL_CDLAST },
/* Visit marked directory */


Ładowanie…
Anuluj
Zapisz