source: help.c @ 8258ea5

release-1.10
Last change on this file since 8258ea5 was 8258ea5, checked in by Jason Gross <jgross@mit.edu>, 11 years ago
Fix spelling of various strings. I dumped `strings barnowl.bin` into a file and ran it through ispell, and then excluded libfaim corrections.
  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[7d4fbcd]1#include "owl.h"
2
[c79a047]3void owl_help(void)
[15283bb]4{
[ca54fd6]5  const owl_variable *v;
[7d4fbcd]6  owl_fmtext fm;
[e19eb97]7  const char *varname;
[ce68f23]8  GPtrArray *varnames;
9  int i;
[7d4fbcd]10
11  owl_fmtext_init_null(&fm);
12  owl_fmtext_append_bold
[6794f72]13    (&fm, 
14     "OWL HELP\n\n");
[7d4fbcd]15
16  owl_fmtext_append_normal
[6794f72]17    (&fm, 
[799b60e]18     "  If you're new to BarnOwl, the first thing you should type is\n\n"
19     "    :show quickstart\n\n"
[6794f72]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");
[7d4fbcd]24
25  owl_fmtext_append_bold
[6794f72]26    (&fm, 
27     "  Basic Keys:\n"
28     );
[7d4fbcd]29  owl_fmtext_append_normal
[6794f72]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"
[ec53338]41     "    M-P           Move to the previous personal message\n"
[c38bfe0]42     "    C-space       Move the mark (asterisk) to the current message\n"
43     "    C-x C-x       Move the mark to the current message while moving to previous mark\n"
[6794f72]44     "\n"
45     "    d             Mark message for deletion\n"
46     "    u             Undelete a message marked for deletion\n"
47     "    x             Expunge deleted messages\n"
[15283bb]48     "    X             Expunge deleted messages and switch to home view\n"
[6794f72]49     "    T             Mark all 'trash' messages for deletion\n"
50     "    M-D           Mark all messages in current view for deletion\n"
51     "    M-u           Unmark all messages in the current view for deletion\n"
52     "\n"
53     "    z             Start a zwrite command\n"
[15283bb]54     "    a             Start an aimwrite command\n"
[6794f72]55     "    r             Reply to the current message\n"
56     "    R             Reply to sender\n"
57     "    C-r           Reply but allow editing of reply line\n"
58     "\n"
[15283bb]59     "    M-n           View zephyrs in selected conversation\n"
[e6d989f]60     "    M-N           View zephyrs in selected conversation of instance\n"
[0398d55]61     "    M-p           View only personal zephyrs\n"
[65fc0900]62     "    V             Change to back to home view ('all' by default)\n"
[6794f72]63     "    v             Start a view command\n"
[3895e23]64     "    !             Invert the current view\n"
[6794f72]65     "\n"
[15283bb]66     "    l             Print a zephyr/AIM buddy listing\n"
[820e852]67     "    A             Toggle away\n"
[15283bb]68     "    o             Toggle one-line display mode\n"
69     "    w             Open a URL in the current message\n"
[6794f72]70     "    C-l           Refresh the screen\n"
[a16d7e5]71     "    C-z           Suspend BarnOwl\n"
[6794f72]72     "    h             Print this help message\n"
[bde7714]73     "    : , M-x       Enter command mode\n"
[55faab7]74     "\n"
[d6b8b50]75     "    /             Forward search\n"
[55faab7]76     "    ?             Reverse search\n"
[6794f72]77     "\n\n"
78     );
[7d4fbcd]79  owl_fmtext_append_bold
[6794f72]80    (&fm, 
81     "  Basic Commands:\n"
82     );
[7d4fbcd]83  owl_fmtext_append_normal
[6794f72]84    (&fm, 
[a16d7e5]85     "    quit, exit    Exit BarnOwl\n"
[6794f72]86     "    help          Get help about commands\n"
[a16d7e5]87     "    show          Show information about BarnOwl (see detailed help)\n"
[6794f72]88     "\n"
89     "    zwrite        Send a zephyr\n"
[15283bb]90     "    aimlogin      Login to AIM\n"
91     "    aimwrite      Send an AIM message\n"
[6794f72]92     "\n"
[15283bb]93     "    addbuddy      Add a zephyr or AIM buddy\n"
94     "    zaway         Turn zaway on or off, or set the message\n"
95     "    zlocate       Locate a user\n"
[6794f72]96     "    subscribe     Subscribe to a zephyr class or instance\n"
97     "    unsubscribe   Unsubscribe to a zephyr class or instance\n"
[15283bb]98     "    blist         Print a list of zephyr and AIM buddies logged in\n"
99     "    search        Search for a text string\n"
100     "\n"
101     "    set           Set a variable (see list below)\n"
102     "    print         Print a variable's value (variables listed below)\n"
[a16d7e5]103     "    startup       Set a command to be run at every BarnOwl startup\n"
104     "    unstartup     Remove a command to be run at every BarnOwl startup\n"
[15283bb]105     "\n"
[6794f72]106     "    getsubs       Print a list of current subscriptions\n"
[15283bb]107     "    unsuball      Unsubscribe from all zephyr classes\n"
108     "    load-subs     Load zephyr subscriptions from a file\n"
[8258ea5]109     "    zpunt         Suppress messages from a zephyr triplet\n"
[15283bb]110     "    zlog          Send a login or logout notification\n"
111     "    zlist         Print a list of zephyr buddies logged in\n"
112     "    alist         Print a list of AIM buddies logged in\n"
[6794f72]113     "    info          Print detailed information about the current message\n"
114     "    filter        Create a message filter\n"
115     "    view          View messages matching a filter\n"
116     "    viewuser      View messages to or from a particular user\n"
117     "    viewclass     View messages to a particular class\n"
118     "    expunge       Expunge messages marked for deletion\n"
[15283bb]119     "    bindkey       Create a new key binding\n"
120     "    alias         Create a command alias\n"
[ec53338]121     "    dump          Dump messagelist as text to a file\n"
[6794f72]122     "\n"
[a16d7e5]123     "    about         Print information about BarnOwl\n"
124     "    status        Print status information about the running BarnOwl\n"
125     "    version       Print the version number of BarnOwl\n"
[6794f72]126     "\n");
[7d4fbcd]127 
128  /* help for variables */
129  owl_fmtext_append_bold(&fm, 
[6794f72]130                         "Variables:\n");
[ce68f23]131  varnames = owl_variable_dict_get_names(owl_global_get_vardict(&g));
132  for (i = 0; i < varnames->len; i++) {
133    varname = varnames->pdata[i];
[7d4fbcd]134    if (varname && varname[0]!='_') {
[ca54fd6]135      v = owl_variable_get_var(owl_global_get_vardict(&g), varname);
136      owl_variable_describe(v, &fm);
[7d4fbcd]137    }
138  }
[ce68f23]139  owl_ptr_array_free(varnames, g_free);
[7d4fbcd]140
141  owl_fmtext_append_normal(&fm, "\n");
142
143  owl_function_popless_fmtext(&fm);
144
[7ab0020]145  owl_fmtext_cleanup(&fm);
[7d4fbcd]146}
Note: See TracBrowser for help on using the repository browser.