From 46c9a5ed4babd0341b6b34321eaab192ad4aa2e4 Mon Sep 17 00:00:00 2001 From: James Booth Date: Thu, 16 Aug 2012 01:47:23 +0100 Subject: [PATCH] Message about F1 key --- src/windows.c | 11 ++++------- 1 file 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(); }