about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-08-16 01:47:23 +0100
committerJames Booth <boothj5@gmail.com>2012-08-16 01:47:23 +0100
commit46c9a5ed4babd0341b6b34321eaab192ad4aa2e4 (patch)
treecf70658c904ece896921d4f6ca4f92c49f85956a /src
parent84bd88ea92aa93d509de5784e82b3b6752979d94 (diff)
downloadprofani-tty-46c9a5ed4babd0341b6b34321eaab192ad4aa2e4.tar.gz
Message about F1 key
Diffstat (limited to 'src')
-rw-r--r--src/windows.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/windows.c b/src/windows.c
index 29665838..69ee5814 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -455,8 +455,6 @@ static void
 _cons_show_basic_help(void)
 {
     cons_show("");
-    cons_show("Basic Commands:");
-    cons_show("");
 
     GSList *basic_helpers = cmd_get_help_list_basic();
     while (basic_helpers != NULL) {
@@ -473,6 +471,8 @@ _cons_show_basic_help(void)
 void
 cons_help(void)
 {
+    cons_show("");
+    cons_show("Basic Commands:");
     _cons_show_basic_help();
 
     cons_show("Settings:");
@@ -504,6 +504,7 @@ cons_help(void)
     cons_show("Navigation:");
     cons_show("");
     cons_show("F1                       : This console window.");
+    cons_show("                           You may need to change the help key in your terminal settings.");
     cons_show("F2-F10                   : Chat windows.");
     cons_show("UP, DOWN                 : Navigate input history.");
     cons_show("LEFT, RIGHT, HOME, END   : Edit current input.");
@@ -635,11 +636,7 @@ _create_windows(void)
         _win_show_time(_cons_win);
         wprintw(_cons_win, "\n");
         _win_show_time(_cons_win);
-        wprintw(_cons_win, "Type '/help' to show all commands.\n");
-        _win_show_time(_cons_win);
-        wprintw(_cons_win, "Use page up and down keys to view.\n");
-        _win_show_time(_cons_win);
-        wprintw(_cons_win, "Use tab to autocomplete commands, logins, or usernames.\n");
+        wprintw(_cons_win, "Type '/help' to show complete help.\n");
         
         _cons_show_basic_help();
     }