about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-25 00:22:51 +0100
committerJames Booth <boothj5@gmail.com>2016-05-25 00:22:51 +0100
commit1d5cc3327961739ac84ca3b9d66fc532bc6773b0 (patch)
tree262a43107ea5fa8ce89bf6cf5d2e25db47f6f49d /src/ui
parent1a3f8d1be84fd35519fa6709af5bb763d650e15c (diff)
parent94212cd01ca87e26a06af4dfbc7b48087c1ef79c (diff)
downloadprofani-tty-1d5cc3327961739ac84ca3b9d66fc532bc6773b0.tar.gz
Merge branch 'master' into complete-empty
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index ebbddd70..207db949 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -2058,15 +2058,18 @@ cons_help(void)
 void
 cons_navigation_help(void)
 {
-    int pad = strlen("Alt-PAGEUP, Alt-PAGEDOWN") + 3;
     ProfWin *console = wins_get_console();
     cons_show("");
     win_print(console, '-', 0, NULL, 0, THEME_WHITE_BOLD, "", "Navigation");
-    cons_show_padded(pad, "Alt-1..Alt-0, F1..F10    : Choose window.");
-    cons_show_padded(pad, "Alt-LEFT, Alt-RIGHT      : Previous/next chat window");
-    cons_show_padded(pad, "PAGEUP, PAGEDOWN         : Page the main window.");
-    cons_show_padded(pad, "Alt-PAGEUP, Alt-PAGEDOWN : Page occupants/roster panel.");
+    cons_show("Alt-1..Alt-0, F1..F10    : Choose window.");
+    cons_show("Alt-LEFT, Alt-RIGHT      : Previous/next chat window.");
+    cons_show("PAGEUP, PAGEDOWN         : Page the main window.");
+    cons_show("Alt-PAGEUP, Alt-PAGEDOWN : Page occupants/roster panel.");
     cons_show("");
+    cons_show("/win <n>     : Focus window n, where n is the window number.");
+    cons_show("/win <name>  : Focus window with name, where name is the recipient, room or window title.");
+    cons_show("");
+    cons_show("See '/help win' for more information.");
 
     cons_alert();
 }