diff options
-rw-r--r-- | README | 17 | ||||
-rw-r--r-- | windows.c | 12 |
2 files changed, 14 insertions, 15 deletions
diff --git a/README b/README index e130fadc..6a71a02e 100644 --- a/README +++ b/README @@ -11,14 +11,9 @@ found at: WORKLIST -------- - -Features: - Trim domain/resourse from usernames in UI - Allow subscription management - Allow presence notification - Dont start chat window when no such recipient - Managing and storing user profiles - Other IM protocols - Support chat logging - Tab completion on commands - Tab completion on users +Allow subscription management +Dont start chat window when no such recipient +Managing and storing user profiles +Other IM protocols +Support chat logging +Tab completion on commands diff --git a/windows.c b/windows.c index 11c880fa..5c5b0686 100644 --- a/windows.c +++ b/windows.c @@ -215,9 +215,9 @@ void win_contact_offline(const char * const from, const char * const show, void cons_help(void) { - _win_show_time(_cons_win); - wprintw(_cons_win, "Help:\n"); - + cons_show(""); + cons_show("Commands:"); + cons_show(""); cons_show("/help : This help."); cons_show("/connect user@host : Login to jabber."); cons_show("/msg user@host mesg : Send mesg to user."); @@ -225,10 +225,14 @@ void cons_help(void) cons_show("/ros : List all contacts."); cons_show("/close : Close a chat window."); cons_show("/quit : Quit Profanity."); + cons_show(""); + cons_show("Keys:"); + cons_show(""); cons_show("F1 : This console window."); - cons_show("F2-10 : Chat windows."); + cons_show("F2-F10 : Chat windows."); cons_show("UP, DOWN : Navigate input history."); cons_show("LEFT, RIGHT : Edit current input."); + cons_show("TAB : Autocomplete recipient."); cons_show("PAGE UP, PAGE DOWN : Page the chat window."); if (_curr_prof_win == 0) |