- Timestamp:
- Jun 30, 2002, 12:31:01 PM (22 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 1c7a4e0
- Parents:
- 039213e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
help.c
r1aee7d9 r6794f72 12 12 owl_fmtext_init_null(&fm); 13 13 owl_fmtext_append_bold 14 15 14 (&fm, 15 "OWL HELP\n\n"); 16 16 17 17 owl_fmtext_append_normal 18 19 20 " For information on advanced keys, do 'M-xshow keymaps'.\n"21 " For information on advanced commands, do 'M-xshow commands'.\n"22 " For information on variables, do 'M-xshow variables'.\n\n");18 (&fm, 19 " For help on a specific command use 'help <command>'\n" 20 " For information on advanced keys, use 'show keymaps'.\n" 21 " For information on advanced commands, use 'show commands'.\n" 22 " For information on variables, use 'show variables'.\n\n"); 23 23 24 24 owl_fmtext_append_bold 25 26 27 25 (&fm, 26 " Basic Keys:\n" 27 ); 28 28 owl_fmtext_append_normal 29 (&fm, 30 " n Move to next non-deleted message\n" 31 " p Move to previous non-deleted message\n" 32 " C-n , down Move to next message\n" 33 " C-p , up Move to previous message\n" 34 " < , > Move to first, last message\n" 35 " right , left Scroll screen left or right\n" 36 " C-v Page down\n" 37 " M-v Page up\n" 38 " i Print more information about a message\n" 39 " P Move to the next personal message\n" 40 " M-P Move to the preivous personal message\n" 41 "\n" 42 " d Mark message for deletion\n" 43 " u Undelete a message marked for deletion\n" 44 " x Expunge deleted messages\n" 45 " X Expunge deleted messages and switch view\n" 46 " T Mark all 'trash' messages for deletion\n" 47 "\n" 48 " z Start a zwrite command\n" 49 " r Reply to the current message\n" 50 " R Reply to sender\n" 51 " C-r Reply but allow editing of reply line\n" 52 "\n" 53 " M-n View zephyrs to selected conversation\n" 54 " v Start a view command\n" 55 "\n" 56 " A Toggle zaway\n" 57 " w Open a URL in the message in netscape\n" 58 " C-l Refresh the screen\n" 59 " C-z Suspend\n" 60 " h Print this help message\n" 61 " : , M-x Enter one of the commands below\n" 62 "\n\n" 63 ); 29 (&fm, 30 " n Move to next non-deleted message\n" 31 " p Move to previous non-deleted message\n" 32 " C-n , down Move to next message\n" 33 " C-p , up Move to previous message\n" 34 " < , > Move to first, last message\n" 35 " right , left Scroll screen left or right\n" 36 " C-v Page down\n" 37 " M-v Page up\n" 38 " i Print more information about a message\n" 39 " P Move to the next personal message\n" 40 " M-P Move to the preivous personal message\n" 41 "\n" 42 " d Mark message for deletion\n" 43 " u Undelete a message marked for deletion\n" 44 " x Expunge deleted messages\n" 45 " X Expunge deleted messages and switch view\n" 46 " T Mark all 'trash' messages for deletion\n" 47 " M-D Mark all messages in current view for deletion\n" 48 " M-u Unmark all messages in the current view for deletion\n" 49 "\n" 50 " z Start a zwrite command\n" 51 " r Reply to the current message\n" 52 " R Reply to sender\n" 53 " C-r Reply but allow editing of reply line\n" 54 "\n" 55 " M-n View zephyrs to selected conversation\n" 56 " M-N View zephyrs to selected converstaion by instance\n" 57 " v Start a view command\n" 58 "\n" 59 " A Toggle zaway\n" 60 " w Open a URL in the message in netscape\n" 61 " C-l Refresh the screen\n" 62 " C-z Suspend\n" 63 " h Print this help message\n" 64 " : , M-x Enter one of the commands below\n" 65 "\n\n" 66 ); 64 67 owl_fmtext_append_bold 65 66 67 68 (&fm, 69 " Basic Commands:\n" 70 ); 68 71 owl_fmtext_append_normal 69 (&fm, 70 " quit, exit Exit owl\n" 71 " help Get help about commands\n" 72 " show Show information about owl (see detailed help)\n" 73 "\n" 74 " zwrite Send a zephyr\n" 75 " reply Reply to the current zephyr\n" 76 "\n" 77 " zlog Send a login or login notification\n" 78 " subscribe Subscribe to a zephyr class or instance\n" 79 " unsubscribe Unsubscribe to a zephyr class or instance\n" 80 " unsuball Unsubscribe from all zephyr classes\n" 81 " getsubs Print a list of current subscriptions\n" 82 " zlocate Locate a user\n" 83 " info Print detailed information about the current message\n" 84 " filter Create a message filter\n" 85 " view View messages matching a filter\n" 86 " viewuser View messages to or from a particular user\n" 87 " viewclass View messages to a particular class\n" 88 " expunge Expunge messages marked for deletion\n" 89 " first Move to the first message\n" 90 " last Move to the last message\n" 91 " zaway Turn zaway on or off, or set the message\n" 92 " load-subs Load zephyr subscriptions from a file\n" 93 "\n" 94 " set Set a variable (see list below)\n" 95 " print Print a variable's value (variables listed below)\n" 96 "\n" 97 " about Print information about owl\n" 98 " status Print status information about the running owl\n" 99 " version Print the version number of owl\n" 100 "\n"); 72 (&fm, 73 " quit, exit Exit owl\n" 74 " help Get help about commands\n" 75 " show Show information about owl (see detailed help)\n" 76 "\n" 77 " zwrite Send a zephyr\n" 78 " reply Reply to the current zephyr\n" 79 "\n" 80 " zlog Send a login or logout notification\n" 81 " subscribe Subscribe to a zephyr class or instance\n" 82 " unsubscribe Unsubscribe to a zephyr class or instance\n" 83 " unsuball Unsubscribe from all zephyr classes\n" 84 " getsubs Print a list of current subscriptions\n" 85 " zlocate Locate a user\n" 86 " info Print detailed information about the current message\n" 87 " filter Create a message filter\n" 88 " view View messages matching a filter\n" 89 " viewuser View messages to or from a particular user\n" 90 " viewclass View messages to a particular class\n" 91 " expunge Expunge messages marked for deletion\n" 92 " zaway Turn zaway on or off, or set the message\n" 93 " load-subs Load zephyr subscriptions from a file\n" 94 "\n" 95 " set Set a variable (see list below)\n" 96 " print Print a variable's value (variables listed below)\n" 97 "\n" 98 " about Print information about owl\n" 99 " status Print status information about the running owl\n" 100 " version Print the version number of owl\n" 101 "\n"); 101 102 102 103 /* help for variables */ 103 104 owl_fmtext_append_bold(&fm, 104 105 "Variables:\n"); 105 106 owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames); 106 107 owl_variable_get_summaryheader(&fm); … … 120 121 owl_fmtext_free(&fm); 121 122 } 122
Note: See TracChangeset
for help on using the changeset viewer.