aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-10 01:09:15 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-10 01:09:15 +0530
commita3d6b81d9f69fc378ace77068e1f0b64fd01a5d9 (patch)
tree5fc3eb4d53b3628ccd6e9ad12f013491f63f4f42 /src
parent741f82b091dea5d671053ab4fd947fbd11af08e5 (diff)
downloadnnn-a3d6b81d9f69fc378ace77068e1f0b64fd01a5d9.tar.gz
Key 's' to manage session
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 7a62c0a..d818534 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3516,8 +3516,8 @@ static void show_help(const char *path)
"1MISC\n"
"9! ^] Shell ;K :K xK Execute plugin K\n"
"cC Execute entry R ^V Pick plugin\n"
- "cU Manage session = Launch app\n"
- "cc SSHFS mount u Unmount\n"
+ "cs Manage session = Launch app\n"
+ "cc Connect remote u Unmount\n"
"9\\ ^P Prompt/run cmd L Lock\n"};
fd = create_tmp_file();
diff --git a/src/nnn.h b/src/nnn.h
index 577d068..a24e27a 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -272,5 +272,5 @@ static struct key bindings[] = {
{ 'Q', SEL_QUIT },
{ CONTROL('Q'), SEL_QUIT },
{ KEY_MOUSE, SEL_CLICK },
- { 'U', SEL_SESSIONS },
+ { 's', SEL_SESSIONS },
};