aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c4
-rw-r--r--src/nnn.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index b5b4e08..0e39342 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -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
diff --git a/src/nnn.h b/src/nnn.h
index dadbde6..3c4b909 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -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 */