source: help.c @ 15283bb

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 15283bb was 15283bb, checked in by James M. Kretchmar <kretch@mit.edu>, 20 years ago
Updated basic help
  • Property mode set to 100644
File size: 5.6 KB
Line 
1#include "owl.h"
2#include <string.h>
3
4static const char fileIdent[] = "$Id$";
5
6void owl_help()
7{
8  owl_fmtext fm;
9  char *varname;
10  owl_list varnames;
11  int i, numvarnames;
12
13  owl_fmtext_init_null(&fm);
14  owl_fmtext_append_bold
15    (&fm, 
16     "OWL HELP\n\n");
17
18  owl_fmtext_append_normal
19    (&fm, 
20     "  For help on a specific command use 'help <command>'\n"
21     "  For information on advanced keys, use 'show keymaps'.\n"
22     "  For information on advanced commands, use 'show commands'.\n"
23     "  For information on variables, use 'show variables'.\n\n");
24
25  owl_fmtext_append_bold
26    (&fm, 
27     "  Basic Keys:\n"
28     );
29  owl_fmtext_append_normal
30    (&fm, 
31     "    n             Move to next non-deleted message\n"
32     "    p             Move to previous non-deleted message\n"
33     "    C-n , down    Move to next message\n"
34     "    C-p , up      Move to previous message\n"
35     "    < , >         Move to first, last message\n"
36     "    right , left  Scroll screen left or right\n"
37     "    C-v           Page down\n"
38     "    M-v           Page up\n"
39     "    i             Print more information about a message\n"
40     "    P             Move to the next personal message\n"
41     "    M-P           Move to the preivous personal message\n"
42     "\n"
43     "    d             Mark message for deletion\n"
44     "    u             Undelete a message marked for deletion\n"
45     "    x             Expunge deleted messages\n"
46     "    X             Expunge deleted messages and switch to home view\n"
47     "    T             Mark all 'trash' messages for deletion\n"
48     "    M-D           Mark all messages in current view for deletion\n"
49     "    M-u           Unmark all messages in the current view for deletion\n"
50     "\n"
51     "    z             Start a zwrite command\n"
52     "    a             Start an aimwrite command\n"
53     "    r             Reply to the current message\n"
54     "    R             Reply to sender\n"
55     "    C-r           Reply but allow editing of reply line\n"
56     "\n"
57     "    M-n           View zephyrs in selected conversation\n"
58     "    M-N           View zephyrs in selected converstaion of instance\n"
59     "    V             Change to back to home view ('all' by default)\n"
60     "    v             Start a view command\n"
61     "\n"
62     "    l             Print a zephyr/AIM buddy listing\n"
63     "    A             Toggle zaway\n"
64     "    o             Toggle one-line display mode\n"
65     "    w             Open a URL in the current message\n"
66     "    C-l           Refresh the screen\n"
67     "    C-z           Suspend Owl\n"
68     "    h             Print this help message\n"
69     "    : , M-x       Enter command mode\n"
70     "\n"
71     "    /             Foward search\n"
72     "    ?             Reverse search\n"
73     "\n\n"
74     );
75  owl_fmtext_append_bold
76    (&fm, 
77     "  Basic Commands:\n"
78     );
79  owl_fmtext_append_normal
80    (&fm, 
81     "    quit, exit    Exit owl\n"
82     "    help          Get help about commands\n"
83     "    show          Show information about owl (see detailed help)\n"
84     "\n"
85     "    zwrite        Send a zephyr\n"
86     "    aimlogin      Login to AIM\n"
87     "    aimwrite      Send an AIM message\n"
88     "\n"
89     "    addbuddy      Add a zephyr or AIM buddy\n"
90     "    zaway         Turn zaway on or off, or set the message\n"
91     "    zlocate       Locate a user\n"
92     "    subscribe     Subscribe to a zephyr class or instance\n"
93     "    unsubscribe   Unsubscribe to a zephyr class or instance\n"
94     "    blist         Print a list of zephyr and AIM buddies logged in\n"
95     "    search        Search for a text string\n"
96     "\n"
97     "    set           Set a variable (see list below)\n"
98     "    print         Print a variable's value (variables listed below)\n"
99     "    startup       Set a command to be run at every Owl startup\n"
100     "    unstartup     Remove a command to be run at every Owl startup\n"
101     "\n"
102     "    getsubs       Print a list of current subscriptions\n"
103     "    unsuball      Unsubscribe from all zephyr classes\n"
104     "    load-subs     Load zephyr subscriptions from a file\n"
105     "    zpunt         Supress messages from a zephyr triplet\n"
106     "    zlog          Send a login or logout notification\n"
107     "    zlist         Print a list of zephyr buddies logged in\n"
108     "    alist         Print a list of AIM buddies logged in\n"
109     "    info          Print detailed information about the current message\n"
110     "    filter        Create a message filter\n"
111     "    view          View messages matching a filter\n"
112     "    viewuser      View messages to or from a particular user\n"
113     "    viewclass     View messages to a particular class\n"
114     "    expunge       Expunge messages marked for deletion\n"
115     "    bindkey       Create a new key binding\n"
116     "    alias         Create a command alias\n"
117     "    dump\n"
118     "\n"
119     "    about         Print information about owl\n"
120     "    status        Print status information about the running owl\n"
121     "    version       Print the version number of owl\n"
122     "\n");
123 
124  /* help for variables */
125  owl_fmtext_append_bold(&fm, 
126                         "Variables:\n");
127  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
128  numvarnames = owl_list_get_size(&varnames);
129  for (i=0; i<numvarnames; i++) {
130    varname = owl_list_get_element(&varnames, i);
131    if (varname && varname[0]!='_') {
132      owl_variable_describe(owl_global_get_vardict(&g), varname, &fm);
133    }
134  }
135  owl_variable_dict_namelist_free(&varnames);
136
137  owl_fmtext_append_normal(&fm, "\n");
138
139  owl_function_popless_fmtext(&fm);
140
141  owl_fmtext_free(&fm);
142}
Note: See TracBrowser for help on using the repository browser.