source: commands.c @ 4e37d56

release-1.10release-1.8release-1.9
Last change on this file since 4e37d56 was 117c21c, checked in by Anders Kaseorg <andersk@mit.edu>, 13 years ago
commands_to_init: Copy string literals This squashes a bunch of -Wwrite-strings warnings from temporarily storing string literals in char * fields. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Property mode set to 100644
File size: 84.6 KB
RevLine 
[8a5b5a1]1#include <getopt.h>
[7d4fbcd]2#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5#include <unistd.h>
6#include "owl.h"
7
[e19eb97]8/* fn is "char *foo(int argc, const char *const *argv, const char *buff)" */
[7d4fbcd]9#define OWLCMD_ARGS(name, fn, ctx, summary, usage, description) \
[117c21c]10        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
[bc9020f]11          NULL, fn, NULL, NULL, NULL, NULL, NULL, NULL }
[7d4fbcd]12
13/* fn is "void foo(void)" */
14#define OWLCMD_VOID(name, fn, ctx, summary, usage, description) \
[117c21c]15        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
[bc9020f]16          NULL, NULL, fn, NULL, NULL, NULL, NULL, NULL }
[7d4fbcd]17
18/* fn is "void foo(int)" */
19#define OWLCMD_INT(name, fn, ctx, summary, usage, description) \
[117c21c]20        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
[bc9020f]21          NULL, NULL, NULL, fn, NULL, NULL, NULL, NULL }
[7d4fbcd]22
23#define OWLCMD_ALIAS(name, actualname) \
[117c21c]24        { g_strdup(name), g_strdup(OWL_CMD_ALIAS_SUMMARY_PREFIX actualname), g_strdup(""), g_strdup(""), OWL_CTX_ANY, \
25          g_strdup(actualname), NULL, NULL, NULL, NULL, NULL, NULL, NULL }
[7d4fbcd]26
[e19eb97]27/* fn is "char *foo(void *ctx, int argc, const char *const *argv, const char *buff)" */
[7d4fbcd]28#define OWLCMD_ARGS_CTX(name, fn, ctx, summary, usage, description) \
[117c21c]29        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
[e19eb97]30          NULL, NULL, NULL, NULL, ((char*(*)(void*,int,const char*const *,const char*))fn), NULL, NULL, NULL }
[7d4fbcd]31
32/* fn is "void foo(void)" */
33#define OWLCMD_VOID_CTX(name, fn, ctx, summary, usage, description) \
[117c21c]34        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
[bc9020f]35          NULL, NULL, NULL, NULL, NULL, ((void(*)(void*))(fn)), NULL, NULL }
[7d4fbcd]36
37/* fn is "void foo(int)" */
38#define OWLCMD_INT_CTX(name, fn, ctx, summary, usage, description) \
[117c21c]39        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
[bc9020f]40          NULL, NULL, NULL, NULL, NULL, NULL, ((void(*)(void*,int))fn), NULL }
[7d4fbcd]41
42
[aad166a]43int owl_cmd_add_defaults(owl_cmddict *cd)
44{
45  owl_cmd commands_to_init[] = {
46
[7d4fbcd]47  OWLCMD_ARGS("zlog", owl_command_zlog, OWL_CTX_ANY,
48              "send a login or logout notification",
[425c013]49              "zlog in [tty]\nzlog out",
[7d4fbcd]50              "zlog in will send a login notification, zlog out will send a\n"
51              "logout notification.  By default a login notification is sent\n"
52              "when owl is started and a logout notification is sent when owl\n"
53              "is exited.  This behavior can be changed with the 'startuplogin'\n"
[451db9e]54              "and 'shutdownlogout' variables.  If a tty is specified for zlog in\n"
[425c013]55              "then the owl variable 'tty' will be set to that string, causing\n"
56              "it to be used as the zephyr location tty.\n"),
[7d4fbcd]57
58  OWLCMD_VOID("quit", owl_command_quit, OWL_CTX_ANY,
59              "exit owl",
60              "",
61              "Exit owl and run any shutdown activities."),
62  OWLCMD_ALIAS("exit", "quit"),
[8921d3f]63  OWLCMD_ALIAS("q",    "quit"),
[ecd5dc5]64
65  OWLCMD_ARGS("term", owl_command_term, OWL_CTX_ANY,
66              "control the terminal",
67              "term raise\n"
68              "term deiconify\n",
69              ""),
70
71  OWLCMD_VOID("nop", owl_command_nop, OWL_CTX_ANY,
72              "do nothing",
73              "",
74              ""),
[7d4fbcd]75 
76  OWLCMD_ARGS("start-command", owl_command_start_command, OWL_CTX_INTERACTIVE,
77              "prompts the user to enter a command",
78              "start-command [initial-value]",
79              "Initializes the command field to initial-value."),
80
81  OWLCMD_ARGS("alias", owl_command_alias, OWL_CTX_ANY,
82              "creates a command alias",
83              "alias <new_command> <old_command>",
84              "Creates a command alias from new_command to old_command.\n"
85              "Any arguments passed to <new_command> will be appended to\n"
86              "<old_command> before it is executed.\n"),
87
88  OWLCMD_ARGS("bindkey", owl_command_bindkey, OWL_CTX_ANY,
89              "creates a binding in a keymap",
90              "bindkey <keymap> <keyseq> command <command>",
[49d67b1]91              "(Note: There is a literal word \"command\" between <keyseq>\n"
[a006a662]92              " and <command>.)\n"
[7d4fbcd]93              "Binds a key sequence to a command within a keymap.\n"
94              "Use 'show keymaps' to see the existing keymaps.\n"
[a006a662]95              "Key sequences may be things like M-C-t or NPAGE.\n\n"
[700dc91]96              "Ex.: bindkey recv C-b command zwrite -c barnowl\n"
97              "Ex.: bindkey recv m command start-command zwrite -c my-class -i \n\n"
98              "SEE ALSO: unbindkey, start-command"),
[8a921b5]99
100  OWLCMD_ARGS("unbindkey", owl_command_unbindkey, OWL_CTX_ANY,
101              "removes a binding in a keymap",
102              "bindkey <keymap> <keyseq>",
103              "Removes a binding of a key sequence within a keymap.\n"
104              "Use 'show keymaps' to see the existing keymaps.\n"
[9ed1278]105              "Ex.: unbindkey recv H\n\n"
[8a921b5]106              "SEE ALSO: bindkey"),
[7d4fbcd]107
108  OWLCMD_ARGS("zwrite", owl_command_zwrite, OWL_CTX_INTERACTIVE,
109              "send a zephyr",
[d544237]110              "zwrite [-n] [-C] [-c class] [-i instance] [-r realm] [-O opcode] [<user> ...] [-m <message...>]",
[7d4fbcd]111              "Zwrite send a zephyr to the one or more users specified.\n\n"
112              "The following options are available:\n\n"
[1c6c4d3]113              "-m    Specifies a message to send without prompting.\n"
114              "      Note that this does not yet log an outgoing message.\n"
115              "      This must be the last argument.\n\n"
[7d4fbcd]116              "-n    Do not send a ping message.\n\n"
117              "-C    If the message is sent to more than one user include a\n"
118              "      \"cc:\" line in the text\n\n"
119              "-c class\n"
120              "      Send to the specified zephyr class\n\n"
121              "-i instance\n"
122              "      Send to the specified zephyr instance\n\n"
123              "-r realm\n"
124              "      Send to a foreign realm\n"
125              "-O opcode\n"
126              "      Send to the specified opcode\n"),
[d309eb3]127
[d09e5a1]128  OWLCMD_ARGS("aimwrite", owl_command_aimwrite, OWL_CTX_INTERACTIVE,
[453bd70]129              "send an AIM message",
[fa4f9c3]130              "aimwrite <user> [-m <message...>]",
[944004c]131              "Send an aim message to a user.\n\n" 
132              "The following options are available:\n\n"
[fa4f9c3]133              "-m    Specifies a message to send without prompting.\n"),
[d09e5a1]134
[37eab7f]135  OWLCMD_ARGS("loopwrite", owl_command_loopwrite, OWL_CTX_INTERACTIVE,
136              "send a loopback message",
137              "loopwrite",
138              "Send a local message.\n"),
139
[987cf3f]140  OWLCMD_ARGS("zcrypt", owl_command_zwrite, OWL_CTX_INTERACTIVE,
[d309eb3]141              "send an encrypted zephyr",
[d544237]142              "zcrypt [-n] [-C] [-c class] [-i instance] [-r realm] [-O opcode] [-m <message...>]\n",
[d309eb3]143              "Behaves like zwrite but uses encryption.  Not for use with\n"
144              "personal messages\n"),
[7d4fbcd]145 
146  OWLCMD_ARGS("reply", owl_command_reply,  OWL_CTX_INTERACTIVE,
147              "reply to the current message",
[e75011e]148              "reply [-e] [ sender | all | zaway ]",
[7d4fbcd]149              "If -e is specified, the zwrite command line is presented to\n"
150              "allow editing.\n\n"
151              "If 'sender' is specified, reply to the sender.\n\n"
[d544237]152              "If 'all' or no args are specified, reply publicly to the\n"
[7d4fbcd]153              "same class/instance for non-personal messages and to the\n"
[e75011e]154              "sender for personal messages.\n\n"
155              "If 'zaway' is specified, replies with a zaway message.\n\n"),
[7d4fbcd]156
157  OWLCMD_ARGS("set", owl_command_set, OWL_CTX_ANY,
158              "set a variable value",
[88ca489]159              "set [-q] [<variable>] [<value>]\n"
[7d4fbcd]160              "set",
161              "Set the named variable to the specified value.  If no\n"
[88ca489]162              "arguments are given, print the value of all variables.\n"
163              "If the value is unspecified and the variable is a boolean, it will be\n"
164              "set to 'on'.  If -q is used, set is silent and does not print a\n"
165              "message.\n"),
[486688f]166
167  OWLCMD_ARGS("unset", owl_command_unset, OWL_CTX_ANY,
168              "unset a boolean variable value",
[73faa26]169              "unset [-q] <variable>\n"
170              "unset",
[486688f]171              "Set the named boolean variable to off.\n"
[7d4fbcd]172              "If -q is specified, is silent and doesn't print a message.\n"),
173
174  OWLCMD_ARGS("print", owl_command_print, OWL_CTX_ANY,
175              "print a variable value",
176              "print <variable>\n"
177              "print",
[d768834]178              "Print the value of the named variable.  If no arguments\n"
[7d4fbcd]179              "are used print the value of all variables.\n"),
180
[38cf544c]181  OWLCMD_ARGS("startup", owl_command_startup, OWL_CTX_ANY,
182              "run a command and set it to be run at every Owl startup",
183              "startup <commands> ...",
184              "Everything on the command line after the startup command\n"
185              "is executed as a normal owl command and is also placed in\n"
186              "a file so that the command is executed every time owl\n"
187              "is started"),
188
189  OWLCMD_ARGS("unstartup", owl_command_unstartup, OWL_CTX_ANY,
190              "remove a command from the list of those to be run at Owl startup",
191              "unstartup <commands> ...",
192              ""),
193
[7d4fbcd]194  OWLCMD_VOID("version", owl_command_version, OWL_CTX_ANY,
195              "print the version of the running owl", "", ""),
196
197  OWLCMD_ARGS("subscribe", owl_command_subscribe, OWL_CTX_ANY,
198              "subscribe to a zephyr class, instance, recipient",
[fd472a7]199              "subscribe [-t] <class> [instance [recipient]]",
[451db9e]200              "Subscribe to the specified class and instance.  If the\n"
[f830d84]201              "instance or recipient is not listed on the command\n"
202              "line they default to * (the wildcard recipient).\n"
[fd472a7]203              "If the -t option is present the subscription will\n"
[f830d84]204              "only be temporary, i.e., it will not be written to\n"
205              "the subscription file and will therefore not be\n"
206              "present the next time owl is started.\n"),
[7d4fbcd]207  OWLCMD_ALIAS("sub", "subscribe"),
208
209  OWLCMD_ARGS("unsubscribe", owl_command_unsubscribe, OWL_CTX_ANY,
210              "unsubscribe from a zephyr class, instance, recipient",
[fd472a7]211              "unsubscribe [-t] <class> [instance [recipient]]",
[7d4fbcd]212              "Unsubscribe from the specified class and instance.  If the\n"
[f830d84]213              "instance or recipient is not listed on the command\n"
214              "line they default to * (the wildcard recipient).\n"
[fd472a7]215              "If the -t option is present the unsubscription will\n"
216              "only be temporary, i.e., it will not be updated in\n"
[f830d84]217              "the subscription file and will therefore not be\n"
[fd472a7]218              "in effect the next time owl is started.\n"),
[7d4fbcd]219  OWLCMD_ALIAS("unsub", "unsubscribe"),
220
221  OWLCMD_VOID("unsuball", owl_command_unsuball, OWL_CTX_ANY,
222              "unsubscribe from all zephyrs", "", ""),
223 
224  OWLCMD_VOID("getsubs", owl_command_getsubs, OWL_CTX_ANY,
225              "print all current subscriptions",
226              "getsubs",
227              "getsubs retrieves the current subscriptions from the server\n"
228              "and displays them.\n"),
229
[2adaf1d]230  OWLCMD_ARGS("dump", owl_command_dump, OWL_CTX_ANY,
231              "dump messages to a file",
232              "dump <filename>",
233              "Dump messages in current view to the named file."),
234
[2404c3a]235  OWLCMD_ARGS("source", owl_command_source, OWL_CTX_ANY,
236              "execute owl commands from a file",
237              "source <filename>",
238              "Execute the owl commands in <filename>.\n"),
239
[952bb256]240  OWLCMD_ARGS("aim", owl_command_aim, OWL_CTX_INTERACTIVE,
241              "AIM specific commands",
242              "aim search <email>",
243              ""),
244
[fd93b41]245  OWLCMD_ARGS("addbuddy", owl_command_addbuddy, OWL_CTX_INTERACTIVE,
246              "add a buddy to a buddylist",
[fe0a16a]247              "addbuddy <protocol> <screenname>",
248              "Add the named buddy to your buddylist.  <protocol> can be aim or zephyr\n"),
[fd93b41]249
250  OWLCMD_ARGS("delbuddy", owl_command_delbuddy, OWL_CTX_INTERACTIVE,
251              "delete a buddy from a buddylist",
[fe0a16a]252              "delbuddy <protocol> <screenname>",
[b1fd36e]253              "Delete the named buddy from your buddylist.  <protocol> can be aim or zephyr\n"),
[fd93b41]254
[8c92848]255  OWLCMD_ARGS("join", owl_command_join, OWL_CTX_INTERACTIVE,
256              "join a chat group",
257              "join aim <groupname> [exchange]",
258              "Join the AIM chatroom with 'groupname'.\n"),
259
[d36f2cb]260  OWLCMD_ARGS("smartzpunt", owl_command_smartzpunt, OWL_CTX_INTERACTIVE,
261              "creates a zpunt based on the current message",
[5eeea3b]262              "smartzpunt [-i | --instance]",
[d36f2cb]263              "Starts a zpunt command based on the current message's class\n"
264              "(and instance if -i is specified).\n"),
265
[7d4fbcd]266  OWLCMD_ARGS("zpunt", owl_command_zpunt, OWL_CTX_ANY,
267              "suppress a given zephyr triplet",
268              "zpunt <class> <instance> [recipient]\n"
269              "zpunt <instance>",
[d544237]270              "The zpunt command will suppress messages to the specified\n"
[451db9e]271              "zephyr triplet.  In the second usage messages are suppressed\n"
[7d4fbcd]272              "for class MESSAGE and the named instance.\n\n"
273              "SEE ALSO:  zunpunt, show zpunts\n"),
274
275  OWLCMD_ARGS("zunpunt", owl_command_zunpunt, OWL_CTX_ANY,
276              "undo a previous zpunt",
277              "zunpunt <class> <instance> [recipient]\n"
278              "zunpunt <instance>",
[451db9e]279              "The zunpunt command will allow messages that were previously\n"
[7d4fbcd]280              "suppressed to be received again.\n\n"
281              "SEE ALSO:  zpunt, show zpunts\n"),
282
[ce7b824]283  OWLCMD_ARGS("punt", owl_command_punt, OWL_CTX_ANY,
284              "suppress an arbitrary filter",
[2d415cc]285              "punt <filter-name>\n"
286              "punt <filter-text (multiple words)>",
[d544237]287              "The punt command will suppress messages to the specified\n"
[ce7b824]288              "filter\n\n"
289              "SEE ALSO:  unpunt, zpunt, show zpunts\n"),
290
291  OWLCMD_ARGS("unpunt", owl_command_unpunt, OWL_CTX_ANY,
292              "remove an entry from the punt list",
[2d415cc]293              "unpunt <number>\n"
294              "unpunt <filter-name>\n"
295              "unpunt <filter-text (multiple words)>",
[ce7b824]296              "The unpunt command will remove an entry from the puntlist.\n"
[2d415cc]297              "The last two forms correspond to the two forms of the :punt\n"
298              "command. The first allows you to remove a specific entry from\n"
[ce7b824]299              "the list (see :show zpunts)\n\n"
300              "SEE ALSO:  punt, zpunt, zunpunt, show zpunts\n"),
301
[7d4fbcd]302  OWLCMD_VOID("info", owl_command_info, OWL_CTX_INTERACTIVE,
303              "display detailed information about the current message",
304              "", ""),
305 
306  OWLCMD_ARGS("help", owl_command_help, OWL_CTX_INTERACTIVE,
307              "display help on using owl",
308              "help [command]", ""),
[42abb10]309
310  OWLCMD_ARGS("zlist", owl_command_zlist, OWL_CTX_INTERACTIVE,
311              "List users logged in",
312              "znol [-f file]",
313              "Print a znol-style listing of users logged in"),
[aa5f725]314
[e60f98c]315  OWLCMD_VOID("alist", owl_command_alist, OWL_CTX_INTERACTIVE,
[aa5f725]316              "List AIM users logged in",
317              "alist",
318              "Print a listing of AIM users logged in"),
319
[e60f98c]320  OWLCMD_VOID("blist", owl_command_blist, OWL_CTX_INTERACTIVE,
[aa5f725]321              "List all buddies logged in",
[25b5b4b]322              "blist",
[aa5f725]323              "Print a listing of buddies logged in, regardless of protocol."),
324
[e60f98c]325  OWLCMD_VOID("toggle-oneline", owl_command_toggleoneline, OWL_CTX_INTERACTIVE,
[c3ab155]326              "Toggle the style between oneline and the default style",
327              "toggle-oneline",
328              ""),
329
[8c97fa1]330  OWLCMD_ARGS("recv:getshift", owl_command_get_shift, OWL_CTX_INTERACTIVE,
331              "gets position of receive window scrolling", "", ""),
332
333  OWLCMD_INT("recv:setshift", owl_command_set_shift, OWL_CTX_INTERACTIVE,
334              "scrolls receive window to specified position", "", ""),
335
[7d4fbcd]336  OWLCMD_VOID("recv:pagedown", owl_function_mainwin_pagedown, 
337              OWL_CTX_INTERACTIVE,
338              "scrolls down by a page", "", ""),
339
340  OWLCMD_VOID("recv:pageup", owl_function_mainwin_pageup, OWL_CTX_INTERACTIVE,
341              "scrolls up by a page", "", ""),
342
[70110286]343  OWLCMD_VOID("recv:mark", owl_function_mark_message,
344              OWL_CTX_INTERACTIVE,
345              "mark the current message", "", ""),
346
347  OWLCMD_VOID("recv:swapmark", owl_function_swap_cur_marked,
348              OWL_CTX_INTERACTIVE,
[73ba824]349              "swap the positions of the pointer and the mark", "", ""),
[70110286]350
[7d4fbcd]351  OWLCMD_INT ("recv:scroll", owl_function_page_curmsg, OWL_CTX_INTERACTIVE,
352              "scrolls current message up or down", 
353              "recv:scroll <numlines>", 
354              "Scrolls the current message up or down by <numlines>.\n"
355              "Scrolls up if <numlines> is negative, else scrolls down.\n"),
356
[b950088]357  OWLCMD_ARGS("next", owl_command_next, OWL_CTX_INTERACTIVE,
358              "move the pointer to the next message",
[7360fab]359              "recv:next [ --filter <name> ] [ --skip-deleted ] [ --last-if-none ]\n"
360              "          [ --smart-filter | --smart-filter-instance ]",
[b950088]361              "Moves the pointer to the next message in the current view.\n"
362              "If --filter is specified, will only consider messages in\n"
363              "the filter <name>.\n"
[7360fab]364              "If --smart-filter or --smart-filter-instance is specified,\n"
365              "goes to the next message that is similar to the current message.\n"
[b950088]366              "If --skip-deleted is specified, deleted messages will\n"
367              "be skipped.\n"
368              "If --last-if-none is specified, will stop at last message\n"
369              "in the view if no other suitable messages are found.\n"),
[7d4fbcd]370  OWLCMD_ALIAS("recv:next", "next"),
371
[b950088]372  OWLCMD_ARGS("prev", owl_command_prev, OWL_CTX_INTERACTIVE,
373              "move the pointer to the previous message",
[7360fab]374              "recv:prev [ --filter <name> ] [ --skip-deleted ] [ --first-if-none ]\n"
375              "          [ --smart-filter | --smart-filter-instance ]",
[b950088]376              "Moves the pointer to the next message in the current view.\n"
377              "If --filter is specified, will only consider messages in\n"
378              "the filter <name>.\n"
[7360fab]379              "If --smart-filter or --smart-filter-instance is specified,\n"
380              "goes to the previous message that is similar to the current message.\n"
[b950088]381              "If --skip-deleted is specified, deleted messages will\n"
382              "be skipped.\n"
383              "If --first-if-none is specified, will stop at first message\n"
384              "in the view if no other suitable messages are found.\n"),
[7d4fbcd]385  OWLCMD_ALIAS("recv:prev", "prev"),
386
[b950088]387  OWLCMD_ALIAS("recv:next-notdel", "recv:next --skip-deleted --last-if-none"),
388  OWLCMD_ALIAS("next-notdel",      "recv:next --skip-deleted --last-if-none"),
[7d4fbcd]389
[b950088]390  OWLCMD_ALIAS("recv:prev-notdel", "recv:prev --skip-deleted --first-if-none"),
391  OWLCMD_ALIAS("prev-notdel",      "recv:prev --skip-deleted --first-if-none"),
[7d4fbcd]392
[b950088]393  OWLCMD_ALIAS("recv:next-personal", "recv:next --filter personal"),
[7d4fbcd]394
[b950088]395  OWLCMD_ALIAS("recv:prev-personal", "recv:prev --filter personal"),
[7d4fbcd]396
397  OWLCMD_VOID("first", owl_command_first, OWL_CTX_INTERACTIVE,
398              "move the pointer to the first message", "", ""),
399  OWLCMD_ALIAS("recv:first", "first"),
400
401  OWLCMD_VOID("last", owl_command_last, OWL_CTX_INTERACTIVE,
[5eeea3b]402              "move the pointer to the last message", "", 
403              "Moves the pointer to the last message in the view.\n"
404              "If we are already at the last message in the view,\n"
405              "blanks the screen and moves just past the end of the view\n"
406              "so that new messages will appear starting at the top\n"
407              "of the screen.\n"),
[7d4fbcd]408  OWLCMD_ALIAS("recv:last", "last"),
409
410  OWLCMD_VOID("expunge", owl_command_expunge, OWL_CTX_INTERACTIVE,
411              "remove all messages marked for deletion", "", ""),
412
413  OWLCMD_VOID("resize", owl_command_resize, OWL_CTX_ANY,
414              "resize the window to the current screen size", "", ""),
415
416  OWLCMD_VOID("redisplay", owl_command_redisplay, OWL_CTX_ANY,
417              "redraw the entire window", "", ""),
418
419  OWLCMD_VOID("suspend", owl_command_suspend, OWL_CTX_ANY,
420              "suspend owl", "", ""),
421
422  OWLCMD_ARGS("echo", owl_command_echo, OWL_CTX_ANY,
423              "pops up a message in popup window",
424              "echo [args .. ]\n\n", ""),
425
426  OWLCMD_ARGS("exec", owl_command_exec, OWL_CTX_ANY,
427              "run a command from the shell",
428              "exec [args .. ]", ""),
429
430  OWLCMD_ARGS("aexec", owl_command_aexec, OWL_CTX_INTERACTIVE,
431              "run a command from the shell and display in an admin message",
432              "aexec [args .. ]", ""),
433
434  OWLCMD_ARGS("pexec", owl_command_pexec, OWL_CTX_INTERACTIVE,
435              "run a command from the shell and display in a popup window",
436              "pexec [args .. ]", ""),
437
438  OWLCMD_ARGS("perl", owl_command_perl, OWL_CTX_ANY,
439              "run a perl expression",
440              "perl [args .. ]", ""),
441
442  OWLCMD_ARGS("aperl", owl_command_aperl, OWL_CTX_INTERACTIVE,
443              "run a perl expression and display in an admin message",
444              "aperl [args .. ]", ""),
445
446  OWLCMD_ARGS("pperl", owl_command_pperl, OWL_CTX_INTERACTIVE,
447              "run a perl expression and display in a popup window",
448              "pperl [args .. ]", ""),
449
450  OWLCMD_ARGS("multi", owl_command_multi, OWL_CTX_ANY,
451              "runs multiple ;-separated commands",
452              "multi <command1> ( ; <command2> )*\n",
453              "Runs multiple semicolon-separated commands in order.\n"
454              "Note quoting isn't supported here yet.\n"
455              "If you want to do something fancy, use perl.\n"),
456
457  OWLCMD_ARGS("(", owl_command_multi, OWL_CTX_ANY,
458              "runs multiple ;-separated commands",
459              "'(' <command1> ( ; <command2> )* ')'\n",
460              "Runs multiple semicolon-separated commands in order.\n"
461              "You must have a space before the final ')'\n"
462              "Note quoting isn't supported here yet.\n"
463              "If you want to do something fancy, use perl.\n"),
464
465  OWLCMD_VOID("pop-message", owl_command_pop_message, OWL_CTX_RECWIN,
466              "pops up a message in a window", "", ""),
467
468  OWLCMD_ARGS("zaway", owl_command_zaway, OWL_CTX_INTERACTIVE,
[4b660cc]469              "Set, enable or disable zephyr away message",
[7d4fbcd]470              "zaway [ on | off | toggle ]\n"
471              "zaway <message>",
[4b660cc]472              "Turn on or off a zaway message.  If 'message' is\n"
473              "specified turn on zaway with that message, otherwise\n"
474              "use the default.\n"),
475
476  OWLCMD_ARGS("aaway", owl_command_aaway, OWL_CTX_INTERACTIVE,
477              "Set, enable or disable AIM away message",
478              "aaway [ on | off | toggle ]\n"
479              "aaway <message>",
480              "Turn on or off the AIM away message.  If 'message' is\n"
481              "specified turn on aaway with that message, otherwise\n"
482              "use the default.\n"),
483
484  OWLCMD_ARGS("away", owl_command_away, OWL_CTX_INTERACTIVE,
485              "Set, enable or disable both AIM and zephyr away messages",
486              "away [ on | off | toggle ]\n"
487              "away <message>",
488              "Turn on or off the AIM and zephyr away message.  If\n"
489              "'message' is specified turn them on with that message,\n"
490              "otherwise use the default.\n"
491              "\n"
492              "This command really just runs the 'aaway' and 'zaway'\n"
493              "commands together\n"
494              "\n"
495              "SEE ALSO: aaway, zaway"),
[7d4fbcd]496
497  OWLCMD_ARGS("load-subs", owl_command_loadsubs, OWL_CTX_ANY,
498              "load subscriptions from a file",
499              "load-subs <file>\n", ""),
500
[7933748]501  OWLCMD_ARGS("loadsubs", owl_command_loadsubs, OWL_CTX_ANY,
502              "load subscriptions from a file",
503              "loadsubs <file>\n", ""),
504
505  OWLCMD_ARGS("loadloginsubs", owl_command_loadloginsubs, OWL_CTX_ANY,
506              "load login subscriptions from a file",
507              "loadloginsubs <file>\n",
508              "The file should contain a list of usernames, one per line."),
509
[7d4fbcd]510  OWLCMD_VOID("about", owl_command_about, OWL_CTX_INTERACTIVE,
511              "print information about owl", "", ""),
512
513  OWLCMD_VOID("status", owl_command_status, OWL_CTX_ANY,
514              "print status information about the running owl", "", ""),
515 
516  OWLCMD_ARGS("zlocate", owl_command_zlocate, OWL_CTX_INTERACTIVE,
517              "locate a user",
[2527615]518              "zlocate [-d] <user> ...", 
519              "Performs a zlocate on one ore more users and puts the result\n"
520              "int a popwin.  If -d is specified, does not authenticate\n"
[7d4fbcd]521              "the lookup request.\n"),
522 
523  OWLCMD_ARGS("filter", owl_command_filter, OWL_CTX_ANY,
524              "create a message filter",
[8fa9562]525              "filter <name> [ -c fgcolor ] [ -b bgcolor ] [ <expression> ... ]",
[7d4fbcd]526              "The filter command creates a filter with the specified name,\n"
527              "or if one already exists it is replaced.  Example filter\n"
528              "syntax would be:\n\n"
529              "     filter myfilter -c red ( class ^foobar$ ) or ( class ^quux$ and instance ^bar$ )\n\n"
[0c502e9]530              "Valid matching fields are:\n"
531              "    sender     -  sender\n"
532              "    recipient  -  recipient\n"
533              "    class      -  zephyr class name\n"
534              "    instance   -  zephyr instance name\n"
535              "    opcode     -  zephyr opcode\n"
536              "    realm      -  zephyr realm\n"
537              "    body       -  message body\n"
[49d467c]538              "    hostname   -  hostname of sending host\n"
[0c502e9]539              "    type       -  message type (zephyr, aim, admin)\n"
540              "    direction  -  either 'in' 'out' or 'none'\n"
[40458b9]541              "    login      -  either 'login' 'logout' or 'none'\n"
542              "Also you may match on the validity of another filter:\n"
543              "    filter <filtername>\n"
[32eed98]544              "Also you may pass the message to a perl function returning 0 or 1,\n"
545              "where 1 indicates that the function matches the filter:\n"
546              "    perl <subname>\n"
[0c502e9]547              "Valid operators are:\n"
548              "    and\n"
549              "    or\n"
550              "    not\n"
551              "And additionally you may use the static values:\n"
552              "    true\n"
553              "    false\n"
[451db9e]554              "Spaces must be present before and after parentheses.  If the\n"
[8fa9562]555              "optional color arguments are used they specifies the colors that\n"
[7d4fbcd]556              "messages matching this filter should be displayed in.\n\n"
557              "SEE ALSO: view, viewclass, viewuser\n"),
558
559  OWLCMD_ARGS("colorview", owl_command_colorview, OWL_CTX_INTERACTIVE,
[8fa9562]560              "change the colors on the current filter",
561              "colorview <fgcolor> [<bgcolor>]",
562              "The colors of messages in the current filter will be changed\n"
563              "to <fgcolor>,<bgcolor>.  Use the 'show colors' command for a list\n"
[7d4fbcd]564              "of valid colors.\n\n"
565              "SEE ALSO: 'show colors'\n"),
566
[5e0b690]567  OWLCMD_ARGS("colorclass", owl_command_colorclass, OWL_CTX_INTERACTIVE,
568              "create a filter to color messages of the given class name",
[8fa9562]569              "colorclass <class> <fgcolor> [<bgcolor>]",
[5e0b690]570              "A filter will be created to color messages in <class>"
[8fa9562]571              "in <fgcolor>,<bgcolor>.  Use the 'show colors' command for a list\n"
[5e0b690]572              "of valid colors.\n\n"
573              "SEE ALSO: 'show colors'\n"),
574
[7d4fbcd]575  OWLCMD_ARGS("view", owl_command_view, OWL_CTX_INTERACTIVE,
576              "view messages matching a filter",
[3895e23]577              "view [<viewname>] [-f <filter> | --home | -r ] [-s <style>]\n"
[7d4fbcd]578              "view <filter>\n"
579              "view -d <expression>\n"
580              "view --home",
[ef56a67]581              "The view command sets information associated with a particular view,\n"
582              "such as view's filter or style.  In the first general usage listed\n"
583              "above <viewname> is the name of the view to be changed.  If not\n"
584              "specified the default view 'main' will be used.  A filter can be set\n"
585              "for the view by listing a named filter after the -f argument.  If\n"
586              "the --home argument is used the filter will be set to the filter named\n"
587              "by the\n 'view_home' variable.  The style can be set by listing the\n"
588              "name style after the -s argument.\n"
[7d4fbcd]589              "\n"
[d544237]590              "The other usages listed above are abbreviated forms that simply set\n"
[ef56a67]591              "the filter of the current view. The -d option allows you to write a\n"
592              "filter expression that will be dynamically created by owl and then\n"
593              "applied as the view's filter\n"
[7d4fbcd]594              "SEE ALSO: filter, viewclass, viewuser\n"),
595
596  OWLCMD_ARGS("smartnarrow", owl_command_smartnarrow, OWL_CTX_INTERACTIVE,
597              "view only messages similar to the current message",
[d544237]598              "smartnarrow [-i | --instance]  [-r | --related]",
[7d4fbcd]599              "If the curmsg is a personal message narrow\n"
[d768834]600              "   to the conversation with that user.\n"
[451db9e]601              "If the curmsg is a <MESSAGE, foo, *>\n"
602              "   message, narrow to the instance.\n"
603              "If the curmsg is a class message, narrow\n"
[7d4fbcd]604              "    to the class.\n"
[451db9e]605              "If the curmsg is a class message and '-i' is specified\n"
[8a5b5a1]606              "    then narrow to the class and instance.\n"
607              "If '-r' or '--related' is specified, behave as though the\n"
608              "    'narrow-related' variable was inverted."),
[7d4fbcd]609
[7360fab]610  OWLCMD_ARGS("smartfilter", owl_command_smartfilter, OWL_CTX_INTERACTIVE,
611              "returns the name of a filter based on the current message",
612              "smartfilter [-i | --instance]",
613              "If the curmsg is a personal message, the filter is\n"
[d768834]614              "   the conversation with that user.\n"
[451db9e]615              "If the curmsg is a <MESSAGE, foo, *>\n"
616              "   message, the filter is to that instance.\n"
[7360fab]617              "If the curmsg is a class message, the filter is that class.\n"
[d544237]618              "If the curmsg is a class message and '-i' is specified\n"
[451db9e]619              "    the filter is to that class and instance.\n"),
[7360fab]620
[7d4fbcd]621  OWLCMD_ARGS("viewclass", owl_command_viewclass, OWL_CTX_INTERACTIVE,
622              "view messages matching a particular class",
623              "viewclass <class>",
624              "The viewclass command will automatically create a filter\n"
625              "matching the specified class and switch the current view\n"
626              "to it.\n\n"
627              "SEE ALSO: filter, view, viewuser\n"),
628  OWLCMD_ALIAS("vc", "viewclass"),
629
630  OWLCMD_ARGS("viewuser", owl_command_viewuser, OWL_CTX_INTERACTIVE,
631              "view messages matching a particular user",
632              "viewuser <user>",
633              "The viewuser command will automatically create a filter\n"
634              "matching the specified user and switch the current\n"
635              "view to it.\n\n"
636              "SEE ALSO: filter, view, viewclass\n"),
637  OWLCMD_ALIAS("vu", "viewuser"),
[14965e5]638  OWLCMD_ALIAS("viewperson", "viewuser"),
639  OWLCMD_ALIAS("vp", "viewuser"),
[7d4fbcd]640
641  OWLCMD_ARGS("show", owl_command_show, OWL_CTX_INTERACTIVE,
[15283bb]642              "show information",
[f17bff98]643              "show colors\n"
644              "show commands\n"
645              "show command <command>\n"
646              "show errors\n"
[7d4fbcd]647              "show filters\n"
648              "show filter <filter>\n"
649              "show keymaps\n"
650              "show keymap <keymap>\n"
[debb15d]651              "show license\n"
[799b60e]652              "show quickstart\n"
[f17bff98]653              "show startup\n"
654              "show status\n"
[f1e629d]655              "show styles\n"
[f17bff98]656              "show subscriptions / show subs\n"
[7d4fbcd]657              "show terminal\n"
[c6adf17]658              "show timers\n"
[f17bff98]659              "show variables\n"
660              "show variable <variable>\n"
[7d4fbcd]661              "show version\n"
[ef56a67]662              "show view [<view>]\n"
[f17bff98]663              "show zpunts\n",
[7d4fbcd]664
665              "Show colors will display a list of valid colors for the\n"
666              "     terminal."
667              "Show filters will list the names of all filters.\n"
668              "Show filter <filter> will show the definition of a particular\n"
669              "     filter.\n\n"
[f17bff98]670              "Show startup will display the custom startup config\n\n"
[7d4fbcd]671              "Show zpunts will show the active zpunt filters.\n\n"
672              "Show keymaps will list the names of all keymaps.\n"
673              "Show keymap <keymap> will show the key bindings in a keymap.\n\n"
674              "Show commands will list the names of all keymaps.\n"
675              "Show command <command> will provide information about a command.\n\n"
[f1e629d]676              "Show styles will list the names of all styles available\n"
677              "for formatting messages.\n\n"
[7d4fbcd]678              "Show variables will list the names of all variables.\n\n"
[d544237]679              "Show errors will show a list of errors encountered by Owl.\n\n"
[7d4fbcd]680              "SEE ALSO: filter, view, alias, bindkey, help\n"),
681 
682  OWLCMD_ARGS("delete", owl_command_delete, OWL_CTX_INTERACTIVE,
683              "mark a message for deletion",
[b950088]684              "delete [ -id msgid ] [ --no-move ]\n"
[7d4fbcd]685              "delete view\n"
686              "delete trash",
687              "If no message id is specified the current message is marked\n"
688              "for deletion.  Otherwise the message with the given message\n"
[451db9e]689              "id is marked for deletion.\n"
[b950088]690              "If '--no-move' is specified, don't move after deletion.\n"
[7d4fbcd]691              "If 'trash' is specified, deletes all trash/auto messages\n"
692              "in the current view.\n"
693              "If 'view' is specified, deletes all messages in the\n"
694              "current view.\n"),
695  OWLCMD_ALIAS("del", "delete"),
696
697  OWLCMD_ARGS("undelete", owl_command_undelete, OWL_CTX_INTERACTIVE,
698              "unmark a message for deletion",
[b950088]699              "undelete [ -id msgid ] [ --no-move ]\n"
[7d4fbcd]700              "undelete view",
701              "If no message id is specified the current message is\n"
702              "unmarked for deletion.  Otherwise the message with the\n"
[451db9e]703              "given message id is unmarked for deletion.\n"
[b950088]704              "If '--no-move' is specified, don't move after deletion.\n"
[7d4fbcd]705              "If 'view' is specified, undeletes all messages\n"
706              "in the current view.\n"),
707  OWLCMD_ALIAS("undel", "undelete"),
708
709  OWLCMD_VOID("beep", owl_command_beep, OWL_CTX_ANY,
710              "ring the terminal bell",
711              "beep",
712              "Beep will ring the terminal bell.\n"
713              "If the variable 'bell' has been\n"
714              "set to 'off' this command does nothing.\n"),
715
716  OWLCMD_ARGS("debug", owl_command_debug, OWL_CTX_ANY,
717              "prints a message into the debug log",
718              "debug <message>", ""),
719
[8ee73f8d]720  OWLCMD_ARGS("getview", owl_command_getview, OWL_CTX_INTERACTIVE,
721              "returns the name of the filter for the current view",
722              "", ""),
723
724  OWLCMD_ARGS("getvar", owl_command_getvar, OWL_CTX_INTERACTIVE,
725              "returns the value of a variable",
726              "getvar <varname>", ""),
727
[cdc6ff1]728  OWLCMD_ARGS("getfilter", owl_command_getfilter, OWL_CTX_INTERACTIVE,
729              "returns the definition of a filter",
730              "getfilter <filtername>", ""),
731
[216c734]732  OWLCMD_ARGS("getstyle", owl_command_getstyle, OWL_CTX_INTERACTIVE,
733              "returns the name of the style for the current view",
734              "", ""),
735
[1fd0b25]736  OWLCMD_ARGS("search", owl_command_search, OWL_CTX_INTERACTIVE,
737              "search messages for a particular string",
738              "search [-r] [<string>]",
739              "The search command will find messages that contain the\n"
740              "specified string and move the cursor there.  If no string\n"
741              "argument is supplied then the previous one is used.  By\n"
[451db9e]742              "default searches are done forwards; if -r is used the search\n"
[1fd0b25]743              "is performed backwards"),
744
[987ff51]745  OWLCMD_ARGS("setsearch", owl_command_setsearch, OWL_CTX_INTERACTIVE,
746              "set the search highlight string without searching",
747              "setsearch <string>",
[d544237]748              "The setsearch command highlights all occurrences of its\n"
[987ff51]749          "argument and makes it the default argument for future\n"
750          "search commands, but does not move the cursor.  With\n"
[451db9e]751          "no argument, it makes search highlighting inactive."),
[987ff51]752
[d09e5a1]753  OWLCMD_ARGS("aimlogin", owl_command_aimlogin, OWL_CTX_ANY,
754              "login to an AIM account",
[453bd70]755              "aimlogin <screenname> [<password>]\n",
[d09e5a1]756              ""),
757
758  OWLCMD_ARGS("aimlogout", owl_command_aimlogout, OWL_CTX_ANY,
759              "logout from AIM",
760              "aimlogout\n",
761              ""),
762
[4692b70]763  OWLCMD_ARGS("error", owl_command_error, OWL_CTX_ANY,
764              "Display an error message",
765              "error <message>",
766              ""),
767
768  OWLCMD_ARGS("message", owl_command_message, OWL_CTX_ANY,
[b1fd36e]769              "Display an informative message",
[4692b70]770              "message <message>",
771              ""),
[d09e5a1]772
[35d2091]773  OWLCMD_ARGS("add-cmd-history", owl_command_add_cmd_history, OWL_CTX_ANY,
774              "Add a command to the history",
775              "add-cmd-history <cmd>",
776              ""),
777
778  OWLCMD_ARGS("with-history", owl_command_with_history, OWL_CTX_ANY,
779              "Run a command and store it into the history",
780              "with-history <cmd>",
781              ""),
782
[f4d32cd]783  OWLCMD_VOID("yes", owl_command_yes, OWL_CTX_RECV,
784              "Answer yes to a question",
785              "yes",
786              ""),
787
788  OWLCMD_VOID("no", owl_command_no, OWL_CTX_RECV,
789              "Answer no to a question",
790              "no",
791              ""),
792
[7d4fbcd]793  /****************************************************************/
794  /************************* EDIT-SPECIFIC ************************/
795  /****************************************************************/
796
797  OWLCMD_VOID_CTX("edit:move-next-word", owl_editwin_move_to_nextword, 
798                  OWL_CTX_EDIT,
799                  "moves cursor forward a word",
800                  "", ""),
801
802  OWLCMD_VOID_CTX("edit:move-prev-word", owl_editwin_move_to_previousword, 
803                  OWL_CTX_EDIT,
804                  "moves cursor backwards a word",
805                  "", ""),
806
807  OWLCMD_VOID_CTX("edit:move-to-buffer-start", owl_editwin_move_to_top,
808                  OWL_CTX_EDIT,
809                  "moves cursor to the top left (start) of the buffer",
810                  "", ""),
811
812  OWLCMD_VOID_CTX("edit:move-to-buffer-end", owl_editwin_move_to_end, 
813                  OWL_CTX_EDIT,
814                  "moves cursor to the bottom right (end) of the buffer",
815                  "", ""),
816
817  OWLCMD_VOID_CTX("edit:move-to-line-end", owl_editwin_move_to_line_end, 
818                  OWL_CTX_EDIT,
819                  "moves cursor to the end of the line",
820                  "", ""),
821
822  OWLCMD_VOID_CTX("edit:move-to-line-start", owl_editwin_move_to_line_start, 
823                  OWL_CTX_EDIT,
824                  "moves cursor to the beginning of the line",
825                  "", ""),
826
827  OWLCMD_VOID_CTX("edit:move-left", owl_editwin_key_left, 
828                  OWL_CTX_EDIT,
829                  "moves the cursor left by a character",
830                  "", ""),
831
832  OWLCMD_VOID_CTX("edit:move-right", owl_editwin_key_right,
833                  OWL_CTX_EDIT,
834                  "moves the cursor right by a character",
835                  "", ""),
836
837  OWLCMD_VOID_CTX("edit:delete-next-word", owl_editwin_delete_nextword,
838                  OWL_CTX_EDIT,
839                  "deletes the word to the right of the cursor",
840                  "", ""),
841
[b68f9cd]842  OWLCMD_VOID_CTX("edit:delete-prev-word", owl_editwin_delete_previousword,
843                  OWL_CTX_EDIT,
844                  "deletes the word to the left of the cursor",
845                  "", ""),
846
[7d4fbcd]847  OWLCMD_VOID_CTX("edit:delete-prev-char", owl_editwin_backspace,
848                  OWL_CTX_EDIT,
849                  "deletes the character to the left of the cursor",
850                  "", ""),
851
852  OWLCMD_VOID_CTX("edit:delete-next-char", owl_editwin_delete_char, 
853                  OWL_CTX_EDIT,
854                  "deletes the character to the right of the cursor",
855                  "", ""),
856
857  OWLCMD_VOID_CTX("edit:delete-to-line-end", owl_editwin_delete_to_endofline,
858                  OWL_CTX_EDIT,
859                  "deletes from the cursor to the end of the line",
860                  "", ""),
861
862  OWLCMD_VOID_CTX("edit:delete-all", owl_editwin_clear, 
863                  OWL_CTX_EDIT,
864                  "deletes all of the contents of the buffer",
865                  "", ""),
866
[f2e36b5]867  OWLCMD_VOID_CTX("edit:transpose-chars", owl_editwin_transpose_chars,
868                  OWL_CTX_EDIT,
869                  "Interchange characters around point, moving forward one character.",
870                  "", ""),
871
[7d4fbcd]872  OWLCMD_VOID_CTX("edit:fill-paragraph", owl_editwin_fill_paragraph, 
873                  OWL_CTX_EDIT,
874                  "fills the current paragraph to line-wrap well",
875                  "", ""),
876
877  OWLCMD_VOID_CTX("edit:recenter", owl_editwin_recenter, 
878                  OWL_CTX_EDIT,
879                  "recenters the buffer",
880                  "", ""),
881
882  OWLCMD_ARGS_CTX("edit:insert-text", owl_command_edit_insert_text, 
883                  OWL_CTX_EDIT,
884                  "inserts text into the buffer",
885                  "edit:insert-text <text>", ""),
886
887  OWLCMD_VOID_CTX("edit:cancel", owl_command_edit_cancel, 
888                  OWL_CTX_EDIT,
889                  "cancels the current command",
890                  "", ""),
891
892  OWLCMD_VOID_CTX("edit:history-next", owl_command_edit_history_next, 
[10b866d]893                  OWL_CTX_EDIT,
[5ade618]894                  "replaces the text with the next history",
[7d4fbcd]895                  "", ""),
896
897  OWLCMD_VOID_CTX("edit:history-prev", owl_command_edit_history_prev, 
[10b866d]898                  OWL_CTX_EDIT,
[7d4fbcd]899                  "replaces the text with the previous history",
900                  "", ""),
901
[7f0c26f]902  OWLCMD_VOID_CTX("edit:set-mark", owl_editwin_set_mark,
903                  OWL_CTX_EDIT,
904                  "sets the mark",
905                  "", ""),
906
907  OWLCMD_VOID_CTX("edit:exchange-point-and-mark", owl_editwin_exchange_point_and_mark,
908                  OWL_CTX_EDIT,
909                  "exchanges the point and the mark",
910                  "", ""),
911
[a60edf2]912  OWLCMD_VOID_CTX("edit:copy-region-as-kill", owl_editwin_copy_region_as_kill,
913                  OWL_CTX_EDIT,
914                  "copy the text between the point and the mark",
915                  "", ""),
916
917  OWLCMD_VOID_CTX("edit:kill-region", owl_editwin_kill_region,
918                  OWL_CTX_EDIT,
919                  "kill text between the point and the mark",
920                  "", ""),
921
922  OWLCMD_VOID_CTX("edit:yank", owl_editwin_yank,
923                  OWL_CTX_EDIT,
924                  "insert the current text from the kill buffer",
925                  "", ""),
926
[5934b87]927  OWLCMD_ALIAS   ("editline:done", "edit:done"),
[0d17295]928  OWLCMD_ALIAS   ("editresponse:done", "edit:done"),
[cf83b7a]929
[435d6b2]930  OWLCMD_VOID_CTX("edit:move-up-line", owl_editwin_key_up, 
[7d4fbcd]931                  OWL_CTX_EDITMULTI,
932                  "moves the cursor up one line",
933                  "", ""),
934
[435d6b2]935  OWLCMD_VOID_CTX("edit:move-down-line", owl_editwin_key_down, 
[7d4fbcd]936                  OWL_CTX_EDITMULTI,
937                  "moves the cursor down one line",
938                  "", ""),
939
[435d6b2]940  OWLCMD_VOID_CTX("edit:done", owl_command_edit_done, 
[0d17295]941                  OWL_CTX_EDIT,
942                  "Finishes entering text in the editwin.",
[7d4fbcd]943                  "", ""),
944
[435d6b2]945  OWLCMD_VOID_CTX("edit:done-or-delete", owl_command_edit_done_or_delete, 
[217a43e]946                  OWL_CTX_EDITMULTI,
947                  "completes the command, but only if at end of message",
948                  "", 
949                  "If only whitespace is to the right of the cursor,\n"
[435d6b2]950                  "runs 'edit:done'.\n"\
[217a43e]951                  "Otherwise runs 'edit:delete-next-char'\n"),
952
[435d6b2]953  OWLCMD_VOID_CTX("edit:forward-paragraph", owl_editwin_forward_paragraph,
[2fc8397]954                  OWL_CTX_EDITMULTI,
955                  "Move forward to end of paragraph.",
956                  "",
957                  "Move the point to the end of the current paragraph"),
958
[435d6b2]959  OWLCMD_VOID_CTX("edit:backward-paragraph", owl_editwin_backward_paragraph,
[2fc8397]960                  OWL_CTX_EDITMULTI,
961                  "Move backward to the start of paragraph.",
962                  "",
963                  "Move the point to the start of the current paragraph"),
964
[7d4fbcd]965  /****************************************************************/
966  /********************** POPLESS-SPECIFIC ************************/
967  /****************************************************************/
968
969  OWLCMD_VOID_CTX("popless:scroll-down-page", owl_viewwin_pagedown, 
970                  OWL_CTX_POPLESS,
971                  "scrolls down one page",
972                  "", ""),
973
974  OWLCMD_VOID_CTX("popless:scroll-down-line", owl_viewwin_linedown, 
975                  OWL_CTX_POPLESS,
976                  "scrolls down one line",
977                  "", ""),
978
979  OWLCMD_VOID_CTX("popless:scroll-up-page", owl_viewwin_pageup, 
980                  OWL_CTX_POPLESS,
981                  "scrolls up one page",
982                  "", ""),
983
984  OWLCMD_VOID_CTX("popless:scroll-up-line", owl_viewwin_lineup, 
985                  OWL_CTX_POPLESS,
986                  "scrolls up one line",
987                  "", ""),
988
989  OWLCMD_VOID_CTX("popless:scroll-to-top", owl_viewwin_top, 
990                  OWL_CTX_POPLESS,
991                  "scrolls to the top of the buffer",
992                  "", ""),
993
994  OWLCMD_VOID_CTX("popless:scroll-to-bottom", owl_viewwin_bottom, 
995                  OWL_CTX_POPLESS,
996                  "scrolls to the bottom of the buffer",
997                  "", ""),
998
999  OWLCMD_INT_CTX ("popless:scroll-right", owl_viewwin_right, 
1000                  OWL_CTX_POPLESS,
1001                  "scrolls right in the buffer",
1002                  "popless:scroll-right <num-chars>", ""),
1003
1004  OWLCMD_INT_CTX ("popless:scroll-left", owl_viewwin_left, 
1005                  OWL_CTX_POPLESS,
1006                  "scrolls left in the buffer",
1007                  "popless:scroll-left <num-chars>", ""),
1008
1009  OWLCMD_VOID_CTX("popless:quit", owl_command_popless_quit, 
1010                  OWL_CTX_POPLESS,
1011                  "exits the popless window",
1012                  "", ""),
1013
[09ceee3]1014  OWLCMD_ARGS_CTX("popless:start-command", owl_viewwin_start_command,
1015                  OWL_CTX_POPLESS,
1016                  "starts a command line in the popless",
1017                  "popless:start-command [initial-value]",
1018                  "Initializes the command field to initial-value"),
1019
[b6cf72f]1020  OWLCMD_ARGS_CTX("popless:search", owl_viewwin_command_search, OWL_CTX_POPLESS,
1021                  "search lines for a particular string",
1022                  "popless:search [-r] [<string>]",
1023                  "The popless:search command will find lines that contain the\n"
1024                  "specified string and scroll the popwin there.  If no string\n"
1025                  "argument is supplied then the previous one is used.  By\n"
1026                  "default searches are done forwards; if -r is used the search\n"
1027                  "is performed backwards"),
1028
[d2fd2f7]1029  OWLCMD_ARGS_CTX("popless:start-search", owl_viewwin_command_start_search, OWL_CTX_POPLESS,
1030                  "starts a command line to search for particular string",
[df4ccc0]1031                  "popless:start-search [-r] [inital-value]",
[d2fd2f7]1032                  "Initializes the command-line to search for initial-value. If\n"
[df4ccc0]1033                  "-r is used, the search will be performed backwards.\n\n"
1034                  "SEE ALSO: popless:search"),
[d2fd2f7]1035
[1522e5d]1036  OWLCMD_ALIAS("webzephyr", "zwrite " OWL_WEBZEPHYR_PRINCIPAL " -c " OWL_WEBZEPHYR_CLASS " -i"),
[0b6b689]1037
[7d4fbcd]1038  /* This line MUST be last! */
[bc9020f]1039  { NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
[7d4fbcd]1040
[aad166a]1041  };
1042
[117c21c]1043  int ret = owl_cmddict_add_from_list(cd, commands_to_init);
1044  owl_cmd *cmd;
1045  for (cmd = commands_to_init; cmd->name != NULL; cmd++)
1046    owl_cmd_cleanup(cmd);
1047  return ret;
[aad166a]1048}
[7d4fbcd]1049
[c79a047]1050void owl_command_info(void)
[cf83b7a]1051{
[7d4fbcd]1052  owl_function_info();
1053}
1054
[c79a047]1055void owl_command_nop(void)
[cf83b7a]1056{
[ecd5dc5]1057}
1058
[e19eb97]1059char *owl_command_help(int argc, const char *const *argv, const char *buff)
[cf83b7a]1060{
[7d4fbcd]1061  if (argc!=2) {
1062    owl_help();
1063    return NULL;
1064  }
1065 
1066  owl_function_help_for_command(argv[1]);
1067  return NULL;
1068}
1069
[e19eb97]1070char *owl_command_zlist(int argc, const char *const *argv, const char *buff)
[cf83b7a]1071{
[e19eb97]1072  const char *file=NULL;
[42abb10]1073
1074  argc--;
1075  argv++;
1076  while (argc) {
[61de085]1077    if (!strcmp(argv[0], "-f")) {
[42abb10]1078      if (argc==1) {
1079        owl_function_makemsg("zlist: -f needs an argument");
1080        return(NULL);
1081      }
1082      file=argv[1];
1083      argc-=2;
1084      argv+=2;
1085    } else {
1086      owl_function_makemsg("zlist: unknown argument");
1087      return(NULL);
1088    }
1089  }
[aa5f725]1090  owl_function_buddylist(0, 1, file);
1091  return(NULL);
1092}
1093
[c79a047]1094void owl_command_alist(void)
[cf83b7a]1095{
[aa5f725]1096  owl_function_buddylist(1, 0, NULL);
1097}
1098
[c79a047]1099void owl_command_blist(void)
[cf83b7a]1100{
[aa5f725]1101  owl_function_buddylist(1, 1, NULL);
[42abb10]1102}
1103
[c79a047]1104void owl_command_toggleoneline(void)
[cf83b7a]1105{
[c3ab155]1106  owl_function_toggleoneline();
1107}
1108
[c79a047]1109void owl_command_about(void)
[cf83b7a]1110{
[7d4fbcd]1111  owl_function_about();
1112}
1113
[c79a047]1114void owl_command_version(void)
[cf83b7a]1115{
[554a2b8]1116  owl_function_makemsg("BarnOwl version %s", OWL_VERSION_STRING);
[7d4fbcd]1117}
1118
[e19eb97]1119char *owl_command_aim(int argc, const char *const *argv, const char *buff)
[952bb256]1120{
1121  if (argc<2) {
1122    owl_function_makemsg("not enough arguments to aim command");
1123    return(NULL);
1124  }
1125
1126  if (!strcmp(argv[1], "search")) {
1127    if (argc!=3) {
1128      owl_function_makemsg("not enough arguments to aim search command");
1129      return(NULL);
1130    }
1131    owl_aim_search(argv[2]);
1132  } else {
[d4b84c0]1133    owl_function_makemsg("unknown subcommand '%s' for aim command", argv[1]);
[952bb256]1134    return(NULL);
1135  }
1136  return(NULL);
1137}
1138
[e19eb97]1139char *owl_command_addbuddy(int argc, const char *const *argv, const char *buff)
[fd93b41]1140{
1141  if (argc!=3) {
1142    owl_function_makemsg("usage: addbuddy <protocol> <buddyname>");
1143    return(NULL);
1144  }
1145
[65ad073]1146  if (!strcasecmp(argv[1], "aim")) {
1147    if (!owl_global_is_aimloggedin(&g)) {
1148      owl_function_makemsg("addbuddy: You must be logged into aim to use this command.");
1149      return(NULL);
1150    }
[03ad7b2]1151    /*
[aac889a]1152    owl_function_makemsg("This function is not yet operational.  Stay tuned.");
1153    return(NULL);
[03ad7b2]1154    */
[65ad073]1155    owl_aim_addbuddy(argv[2]);
1156    owl_function_makemsg("%s added as AIM buddy for %s", argv[2], owl_global_get_aim_screenname(&g));
1157  } else if (!strcasecmp(argv[1], "zephyr")) {
1158    owl_zephyr_addbuddy(argv[2]);
1159    owl_function_makemsg("%s added as zephyr buddy", argv[2]);
1160  } else {
1161    owl_function_makemsg("addbuddy: currently the only supported protocols are 'zephyr' and 'aim'");
[fd93b41]1162  }
1163
1164  return(NULL);
1165}
1166
[e19eb97]1167char *owl_command_delbuddy(int argc, const char *const *argv, const char *buff)
[fd93b41]1168{
1169  if (argc!=3) {
1170    owl_function_makemsg("usage: delbuddy <protocol> <buddyname>");
1171    return(NULL);
1172  }
1173
[65ad073]1174  if (!strcasecmp(argv[1], "aim")) {
1175    if (!owl_global_is_aimloggedin(&g)) {
1176      owl_function_makemsg("delbuddy: You must be logged into aim to use this command.");
1177      return(NULL);
1178    }
1179    owl_aim_delbuddy(argv[2]);
1180    owl_function_makemsg("%s deleted as AIM buddy for %s", argv[2], owl_global_get_aim_screenname(&g));
1181  } else if (!strcasecmp(argv[1], "zephyr")) {
1182    owl_zephyr_delbuddy(argv[2]);
1183    owl_function_makemsg("%s deleted as zephyr buddy", argv[2]);
1184  } else {
1185    owl_function_makemsg("delbuddy: currently the only supported protocols are 'zephyr' and 'aim'");
[fd93b41]1186  }
1187
[8c92848]1188  return(NULL);
1189}
[fd93b41]1190
[e19eb97]1191char *owl_command_join(int argc, const char *const *argv, const char *buff)
[8c92848]1192{
1193  if (argc!=3 && argc!=4) {
1194    owl_function_makemsg("usage: join <protocol> <buddyname> [exchange]");
1195    return(NULL);
1196  }
1197
1198  if (!strcasecmp(argv[1], "aim")) {
1199    if (!owl_global_is_aimloggedin(&g)) {
1200      owl_function_makemsg("join aim: You must be logged into aim to use this command.");
1201      return(NULL);
1202    }
1203    if (argc==3) {
1204      owl_aim_chat_join(argv[2], 4);
1205    } else {
1206      owl_aim_chat_join(argv[2], atoi(argv[3]));
1207    }
1208    /* owl_function_makemsg("%s deleted as AIM buddy for %s", argv[2], owl_global_get_aim_screenname(&g)); */
1209  } else {
1210    owl_function_makemsg("join: currently the only supported protocol is 'aim'");
1211  }
[fd93b41]1212  return(NULL);
1213}
1214
[e19eb97]1215char *owl_command_startup(int argc, const char *const *argv, const char *buff)
[38cf544c]1216{
[e19eb97]1217  const char *ptr;
[38cf544c]1218
1219  if (argc<2) {
1220    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
1221    return(NULL);
1222  }
1223
[3e96ff0]1224  ptr = skiptokens(buff, 1);
[38cf544c]1225
[c809f5e]1226  owl_function_command_norv(ptr);
[3e96ff0]1227  owl_function_addstartup(ptr);
[38cf544c]1228
1229  return(NULL);
1230}
1231
[e19eb97]1232char *owl_command_unstartup(int argc, const char *const *argv, const char *buff)
[38cf544c]1233{
[e19eb97]1234  const char *ptr;
[38cf544c]1235
1236  if (argc<2) {
1237    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
1238    return(NULL);
1239  }
1240
[3e96ff0]1241  ptr = skiptokens(buff, 1);
[38cf544c]1242
[3e96ff0]1243  owl_function_delstartup(ptr);
[38cf544c]1244
1245  return(NULL);
1246}
1247
[e19eb97]1248char *owl_command_dump(int argc, const char *const *argv, const char *buff)
[cf83b7a]1249{
[f36222f]1250  char *filename;
1251 
[2adaf1d]1252  if (argc!=2) {
1253    owl_function_makemsg("usage: dump <filename>");
1254    return(NULL);
1255  }
[f36222f]1256  filename=owl_util_makepath(argv[1]);
1257  owl_function_dump(filename);
[ddbbcffa]1258  g_free(filename);
[2adaf1d]1259  return(NULL);
1260}
1261
[e19eb97]1262char *owl_command_source(int argc, const char *const *argv, const char *buff)
[2404c3a]1263{
1264  if (argc!=2) {
1265    owl_function_makemsg("usage: source <filename>");
1266    return(NULL);
1267  }
1268
1269  owl_function_source(argv[1]);
1270  return(NULL);
1271}
1272
[e19eb97]1273char *owl_command_next(int argc, const char *const *argv, const char *buff)
[cf83b7a]1274{
[b950088]1275  char *filter=NULL;
1276  int skip_deleted=0, last_if_none=0;
1277  while (argc>1) {
1278    if (argc>=1 && !strcmp(argv[1], "--skip-deleted")) {
1279      skip_deleted=1;
1280      argc-=1; argv+=1; 
1281    } else if (argc>=1 && !strcmp(argv[1], "--last-if-none")) {
1282      last_if_none=1;
1283      argc-=1; argv+=1; 
1284    } else if (argc>=2 && !strcmp(argv[1], "--filter")) {
[d4927a7]1285      filter = g_strdup(argv[2]);
[7360fab]1286      argc-=2; argv+=2; 
1287    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter")) {
[8a5b5a1]1288      filter = owl_function_smartfilter(0, 0);
[7360fab]1289      argc-=2; argv+=2; 
1290    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter-instance")) {
[8a5b5a1]1291      filter = owl_function_smartfilter(1, 0);
[b950088]1292      argc-=2; argv+=2; 
1293    } else {
1294      owl_function_makemsg("Invalid arguments to command 'next'.");
1295      return(NULL);
1296    }
1297  }
1298  owl_function_nextmsg_full(filter, skip_deleted, last_if_none);
[3b8a563]1299  g_free(filter);
[b950088]1300  return(NULL);
[7d4fbcd]1301}
1302
[e19eb97]1303char *owl_command_prev(int argc, const char *const *argv, const char *buff)
[cf83b7a]1304{
[b950088]1305  char *filter=NULL;
1306  int skip_deleted=0, first_if_none=0;
1307  while (argc>1) {
1308    if (argc>=1 && !strcmp(argv[1], "--skip-deleted")) {
1309      skip_deleted=1;
1310      argc-=1; argv+=1; 
1311    } else if (argc>=1 && !strcmp(argv[1], "--first-if-none")) {
1312      first_if_none=1;
1313      argc-=1; argv+=1; 
1314    } else if (argc>=2 && !strcmp(argv[1], "--filter")) {
[d4927a7]1315      filter = g_strdup(argv[2]);
[b950088]1316      argc-=2; argv+=2; 
[7360fab]1317    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter")) {
[8a5b5a1]1318      filter = owl_function_smartfilter(0, 0);
[7360fab]1319      argc-=2; argv+=2; 
1320    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter-instance")) {
[8a5b5a1]1321      filter = owl_function_smartfilter(1, 0);
[7360fab]1322      argc-=2; argv+=2; 
1323   } else {
[b950088]1324      owl_function_makemsg("Invalid arguments to command 'prev'.");
1325      return(NULL);
1326    }
1327  }
1328  owl_function_prevmsg_full(filter, skip_deleted, first_if_none);
[3b8a563]1329  g_free(filter);
[b950088]1330  return(NULL);
[7d4fbcd]1331}
1332
[e19eb97]1333char *owl_command_smartnarrow(int argc, const char *const *argv, const char *buff)
[cf83b7a]1334{
[7360fab]1335  char *filtname = NULL;
1336
[8a5b5a1]1337  char opt;
1338  int instance = 0, related = 0, i;
[96828e4]1339  const char **tmp_argv = g_new(const char *, argc);
[8a5b5a1]1340
[447435a]1341  static const struct option options[] = {
[8a5b5a1]1342    {"instance", 0, 0, 'i'},
1343    {"related",  0, 0, 'r'},
1344    {NULL,       0, 0, 0}};
[e54a746]1345
[b31f1c9]1346  for (i = 0; i < argc; i++)
1347    tmp_argv[i] = argv[i];
1348
[e54a746]1349  optind = 0;
[447435a]1350  while ((opt = getopt_long(argc, (char **)tmp_argv, "ir", options, NULL)) != -1) {
[8a5b5a1]1351    switch (opt) {
1352      case 'i':
1353        instance = 1;
1354        break;
1355      case 'r':
1356        related = 1;
1357        break;
1358      default:
1359        owl_function_makemsg("Wrong number of arguments for %s (%c)", argv[0], opt);
1360        goto done;
1361    }
[7d4fbcd]1362  }
[8a5b5a1]1363
1364  filtname = owl_function_smartfilter(instance, related);
1365
[7360fab]1366  if (filtname) {
[3895e23]1367    owl_function_change_currentview_filter(filtname);
[ddbbcffa]1368    g_free(filtname);
[7360fab]1369  }
[8a5b5a1]1370
1371done:
[ddbbcffa]1372  g_free(tmp_argv);
[88e425f]1373
[7d4fbcd]1374  return NULL;
1375}
1376
[e19eb97]1377char *owl_command_smartfilter(int argc, const char *const *argv, const char *buff)
[cf83b7a]1378{
[7360fab]1379  char *filtname = NULL;
1380
1381  if (argc == 1) {
[8a5b5a1]1382    filtname = owl_function_smartfilter(0, 0);
[7360fab]1383  } else if (argc == 2 && (!strcmp(argv[1], "-i") || !strcmp(argv[1], "--instance"))) {
[8a5b5a1]1384    filtname = owl_function_smartfilter(1, 0);
[7360fab]1385  } else {
1386    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);   
1387  }
1388  return filtname;
1389}
1390
[c79a047]1391void owl_command_expunge(void)
[cf83b7a]1392{
[7d4fbcd]1393  owl_function_expunge();
1394}
1395
[c79a047]1396void owl_command_first(void)
[cf83b7a]1397{
[7d4fbcd]1398  owl_global_set_rightshift(&g, 0);
1399  owl_function_firstmsg();
1400}
1401
[c79a047]1402void owl_command_last(void)
[cf83b7a]1403{
[7d4fbcd]1404  owl_function_lastmsg();
1405}
1406
[c79a047]1407void owl_command_resize(void)
[cf83b7a]1408{
[7d4fbcd]1409  owl_function_resize();
1410}
1411
[c79a047]1412void owl_command_redisplay(void)
[cf83b7a]1413{
[7d4fbcd]1414  owl_function_full_redisplay();
1415}
1416
[8c97fa1]1417char *owl_command_get_shift(int argc, const char *const *argv, const char *buff)
1418{
1419  if(argc != 1)
1420  {
1421    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
1422    return NULL;
1423  }
[3472845]1424  return g_strdup_printf("%d", owl_global_get_rightshift(&g));
[8c97fa1]1425}
1426
1427void owl_command_set_shift(int shift)
1428{
1429  owl_global_set_rightshift(&g, shift);
1430}
1431
[c79a047]1432void owl_command_unsuball(void)
[cf83b7a]1433{
[7d4fbcd]1434  owl_function_unsuball();
1435}
1436
[e19eb97]1437char *owl_command_loadsubs(int argc, const char *const *argv, const char *buff)
[cf83b7a]1438{
[7d4fbcd]1439  if (argc == 2) {
1440    owl_function_loadsubs(argv[1]);
1441  } else if (argc == 1) {
1442    owl_function_loadsubs(NULL);
1443  } else {
1444    owl_function_makemsg("Wrong number of arguments for load-subs.");
[7933748]1445    return(NULL);
[7d4fbcd]1446  }
[7933748]1447  return(NULL);
1448}
1449
1450
[e19eb97]1451char *owl_command_loadloginsubs(int argc, const char *const *argv, const char *buff)
[cf83b7a]1452{
[7933748]1453  if (argc == 2) {
1454    owl_function_loadloginsubs(argv[1]);
1455  } else if (argc == 1) {
1456    owl_function_loadloginsubs(NULL);
1457  } else {
1458    owl_function_makemsg("Wrong number of arguments for load-subs.");
1459    return(NULL);
1460  }
1461  return(NULL);
[7d4fbcd]1462}
1463
[c79a047]1464void owl_command_suspend(void)
[cf83b7a]1465{
[7d4fbcd]1466  owl_function_suspend();
1467}
1468
[e19eb97]1469char *owl_command_start_command(int argc, const char *const *argv, const char *buff)
[cf83b7a]1470{
[7d4fbcd]1471  buff = skiptokens(buff, 1);
1472  owl_function_start_command(buff);
[cf83b7a]1473  return(NULL);
[7d4fbcd]1474}
1475
[e19eb97]1476char *owl_command_zaway(int argc, const char *const *argv, const char *buff)
[cf83b7a]1477{
[7d4fbcd]1478  if ((argc==1) ||
1479      ((argc==2) && !strcmp(argv[1], "on"))) {
1480    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
1481    owl_function_zaway_on();
1482    return NULL;
1483  }
1484
1485  if (argc==2 && !strcmp(argv[1], "off")) {
1486    owl_function_zaway_off();
1487    return NULL;
1488  }
1489
1490  if (argc==2 && !strcmp(argv[1], "toggle")) {
1491    owl_function_zaway_toggle();
1492    return NULL;
1493  }
1494
1495  buff = skiptokens(buff, 1);
1496  owl_global_set_zaway_msg(&g, buff);
1497  owl_function_zaway_on();
1498  return NULL;
1499}
1500
1501
[e19eb97]1502char *owl_command_aaway(int argc, const char *const *argv, const char *buff)
[4b660cc]1503{
1504  if ((argc==1) ||
1505      ((argc==2) && !strcmp(argv[1], "on"))) {
1506    owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g));
1507    owl_function_aaway_on();
1508    return NULL;
1509  }
1510
1511  if (argc==2 && !strcmp(argv[1], "off")) {
1512    owl_function_aaway_off();
1513    return NULL;
1514  }
1515
1516  if (argc==2 && !strcmp(argv[1], "toggle")) {
1517    owl_function_aaway_toggle();
1518    return NULL;
1519  }
1520
1521  buff = skiptokens(buff, 1);
1522  owl_global_set_aaway_msg(&g, buff);
1523  owl_function_aaway_on();
1524  return NULL;
1525}
1526
1527
[e19eb97]1528char *owl_command_away(int argc, const char *const *argv, const char *buff)
[4b660cc]1529{
[8ba37ec]1530  if ((argc==1) ||
1531      ((argc==2) && !strcmp(argv[1], "on"))) {
1532    owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g));
1533    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
1534    owl_function_aaway_on();
1535    owl_function_zaway_on();
[2b237308]1536    owl_function_makemsg("Away messages set.");
[8ba37ec]1537    return NULL;
1538  }
1539
1540  if (argc==2 && !strcmp(argv[1], "off")) {
1541    owl_function_aaway_off();
1542    owl_function_zaway_off();
1543    return NULL;
1544  }
1545
1546  if (argc==2 && !strcmp(argv[1], "toggle")) {
1547    /* if either one is on, turn it off, otherwise toggle both (turn
1548     *  them both on)
1549     */
1550    if (!owl_global_is_zaway(&g) && !owl_global_is_aaway(&g)) {
1551      owl_function_aaway_toggle();
1552      owl_function_zaway_toggle();
1553      owl_function_makemsg("Away messages set.");
1554    } else {
1555      if (owl_global_is_zaway(&g)) owl_function_zaway_toggle();
1556      if (owl_global_is_aaway(&g)) owl_function_aaway_toggle();
1557      owl_function_makemsg("Away messages off.");
1558    }
1559    return NULL;
1560  }
1561
1562  buff = skiptokens(buff, 1);
1563  owl_global_set_aaway_msg(&g, buff);
1564  owl_global_set_zaway_msg(&g, buff);
1565  owl_function_aaway_on();
1566  owl_function_zaway_on();
1567  owl_function_makemsg("Away messages set.");
[4b660cc]1568  return NULL;
1569}
1570
[e19eb97]1571char *owl_command_set(int argc, const char *const *argv, const char *buff)
[cf83b7a]1572{
[e19eb97]1573  const char *var, *val;
[7d4fbcd]1574  int  silent=0;
[486688f]1575  int requirebool=0;
[7d4fbcd]1576
1577  if (argc == 1) {
1578    owl_function_printallvars();
1579    return NULL;
[486688f]1580  } 
1581
1582  if (argc > 1 && !strcmp("-q",argv[1])) {
[7d4fbcd]1583    silent = 1;
[486688f]1584    argc--; argv++;
1585  }
1586
1587  if (argc == 2) {
1588    var=argv[1];
1589    val="on";
1590    requirebool=1;
[7d4fbcd]1591  } else if (argc == 3) {
1592    var=argv[1];
1593    val=argv[2];
1594  } else {
1595    owl_function_makemsg("Wrong number of arguments for set command");
1596    return NULL;
1597  }
[486688f]1598  owl_variable_set_fromstring(owl_global_get_vardict(&g), var, val, !silent, requirebool);
1599  return NULL;
1600}
[7d4fbcd]1601
[e19eb97]1602char *owl_command_unset(int argc, const char *const *argv, const char *buff)
[cf83b7a]1603{
[e19eb97]1604  const char *var, *val;
[486688f]1605  int  silent=0;
1606
1607  if (argc > 1 && !strcmp("-q",argv[1])) {
1608    silent = 1;
1609    argc--; argv++;
1610  }
1611  if (argc == 2) {
1612    var=argv[1];
1613    val="off";
1614  } else {
1615    owl_function_makemsg("Wrong number of arguments for unset command");
1616    return NULL;
1617  }
1618  owl_variable_set_fromstring(owl_global_get_vardict(&g), var, val, !silent, 1);
[7d4fbcd]1619  return NULL;
1620}
1621
[e19eb97]1622char *owl_command_print(int argc, const char *const *argv, const char *buff)
[cf83b7a]1623{
[e19eb97]1624  const char *var;
[010a951]1625  char *value;
[7d4fbcd]1626
1627  if (argc==1) {
1628    owl_function_printallvars();
1629    return NULL;
1630  } else if (argc!=2) {
1631    owl_function_makemsg("Wrong number of arguments for print command");
1632    return NULL;
1633  }
1634
1635  var=argv[1];
1636   
[010a951]1637  value = owl_variable_get_tostring(owl_global_get_vardict(&g), var);
1638  if (value) {
1639    owl_function_makemsg("%s = '%s'", var, value);
1640    g_free(value);
[7d4fbcd]1641  } else {
1642    owl_function_makemsg("Unknown variable '%s'.", var);
1643  }
1644  return NULL;
1645}
1646
1647
[e19eb97]1648char *owl_command_exec(int argc, const char *const *argv, const char *buff)
[cf83b7a]1649{
[7ba9e0de]1650  return owl_function_exec(argc, argv, buff, OWL_OUTPUT_RETURN);
[7d4fbcd]1651}
1652
[e19eb97]1653char *owl_command_pexec(int argc, const char *const *argv, const char *buff)
[cf83b7a]1654{
[7ba9e0de]1655  return owl_function_exec(argc, argv, buff, OWL_OUTPUT_POPUP);
[7d4fbcd]1656}
1657
[e19eb97]1658char *owl_command_aexec(int argc, const char *const *argv, const char *buff)
[cf83b7a]1659{
[7ba9e0de]1660  return owl_function_exec(argc, argv, buff, OWL_OUTPUT_ADMINMSG);
[7d4fbcd]1661}
1662
[e19eb97]1663char *owl_command_perl(int argc, const char *const *argv, const char *buff)
[cf83b7a]1664{
[7ba9e0de]1665  return owl_function_perl(argc, argv, buff, OWL_OUTPUT_RETURN);
[7d4fbcd]1666}
1667
[e19eb97]1668char *owl_command_pperl(int argc, const char *const *argv, const char *buff)
[cf83b7a]1669{
[7ba9e0de]1670  return owl_function_perl(argc, argv, buff, OWL_OUTPUT_POPUP);
[7d4fbcd]1671}
1672
[e19eb97]1673char *owl_command_aperl(int argc, const char *const *argv, const char *buff)
[cf83b7a]1674{
[7ba9e0de]1675  return owl_function_perl(argc, argv, buff, OWL_OUTPUT_ADMINMSG);
[7d4fbcd]1676}
1677
[e19eb97]1678char *owl_command_multi(int argc, const char *const *argv, const char *buff)
[cf83b7a]1679{
[42c2a80]1680  char *lastrv = NULL, *newbuff;
[7d4fbcd]1681  char **commands;
[d275eb2]1682  int  i;
[7d4fbcd]1683  if (argc < 2) {
1684    owl_function_makemsg("Invalid arguments to 'multi' command.");   
1685    return NULL;
1686  }
[d4927a7]1687  newbuff = g_strdup(skiptokens(buff, 1));
[7d4fbcd]1688  if (!strcmp(argv[0], "(")) {
1689    for (i=strlen(newbuff)-1; i>=0; i--) {
1690      if (newbuff[i] == ')') {
1691        newbuff[i] = '\0';
1692        break;
1693      } else if (newbuff[i] != ' ') {
1694        owl_function_makemsg("Invalid arguments to 'multi' command.");   
[ddbbcffa]1695        g_free(newbuff);
[7d4fbcd]1696        return NULL;
1697      }
1698    }
1699  }
[d275eb2]1700  commands = g_strsplit_set(newbuff, ";", 0);
1701  for (i = 0; commands[i] != NULL; i++) {
[3b8a563]1702    g_free(lastrv);
[7d4fbcd]1703    lastrv = owl_function_command(commands[i]);
1704  }
[ddbbcffa]1705  g_free(newbuff);
[d275eb2]1706  g_strfreev(commands);
[7d4fbcd]1707  return lastrv;
1708}
1709
1710
[e19eb97]1711char *owl_command_alias(int argc, const char *const *argv, const char *buff)
[cf83b7a]1712{
[7d4fbcd]1713  if (argc < 3) {
1714    owl_function_makemsg("Invalid arguments to 'alias' command.");
1715    return NULL;
1716  }
1717  buff = skiptokens(buff, 2);
1718  owl_function_command_alias(argv[1], buff);
1719  return (NULL);
1720}
1721
1722
[e19eb97]1723char *owl_command_bindkey(int argc, const char *const *argv, const char *buff)
[cf83b7a]1724{
[7d4fbcd]1725  owl_keymap *km;
1726  int ret;
1727
1728  if (argc < 5 || strcmp(argv[3], "command")) {
[f1e629d]1729    owl_function_makemsg("Usage: bindkey <keymap> <binding> command <cmd>");
[7d4fbcd]1730    return NULL;
1731  }
1732  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), argv[1]);
1733  if (!km) {
1734    owl_function_makemsg("No such keymap '%s'", argv[1]);
1735    return NULL;
1736  }
1737  buff = skiptokens(buff, 4);
1738  ret = owl_keymap_create_binding(km, argv[2], buff, NULL, "*user*");
1739  if (ret!=0) {
1740    owl_function_makemsg("Unable to bind '%s' in keymap '%s' to '%s'.",
1741                         argv[2], argv[1], buff);
1742    return NULL;
1743  }
1744  return NULL;
1745}
1746
[8a921b5]1747
[b4a95fc]1748char *owl_command_unbindkey(int argc, const char *const *argv, const char *buf)
[8a921b5]1749{
1750  owl_keymap *km;
1751  int ret;
1752
1753  if (argc < 3) {
1754    owl_function_makemsg("Usage: bindkey <keymap> <binding>");
1755    return NULL;
1756  }
1757  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), argv[1]);
1758  if (!km) {
1759    owl_function_makemsg("No such keymap '%s'", argv[1]);
1760    return NULL;
1761  }
1762  ret = owl_keymap_remove_binding(km, argv[2]);
1763  if (ret == -1) {
1764    owl_function_makemsg("Unable to unbind '%s' in keymap '%s'.",
1765                         argv[2], argv[1]);
1766    return NULL;
1767  } else if (ret == -2) {
1768    owl_function_makemsg("No such binding '%s' in keymap '%s'.",
1769                         argv[2], argv[1]);
1770  }
1771  return NULL;
1772}
1773
1774
[c79a047]1775void owl_command_quit(void)
[cf83b7a]1776{
[7d4fbcd]1777  owl_function_quit();
1778}
1779
[e19eb97]1780char *owl_command_debug(int argc, const char *const *argv, const char *buff)
[cf83b7a]1781{
[7d4fbcd]1782  if (argc<2) {
1783    owl_function_makemsg("Need at least one argument to debug command");
[ecd5dc5]1784    return(NULL);
[7d4fbcd]1785  }
1786
1787  if (!owl_global_is_debug_fast(&g)) {
1788    owl_function_makemsg("Debugging is not turned on");
[ecd5dc5]1789    return(NULL);
[7d4fbcd]1790  }
1791
[554a2b8]1792  owl_function_debugmsg("%s", argv[1]);
[ecd5dc5]1793  return(NULL);
[7d4fbcd]1794}
1795
[e19eb97]1796char *owl_command_term(int argc, const char *const *argv, const char *buff)
[cf83b7a]1797{
[ecd5dc5]1798  if (argc<2) {
1799    owl_function_makemsg("Need at least one argument to the term command");
1800    return(NULL);
1801  }
1802
1803  if (!strcmp(argv[1], "raise")) {
1804    owl_function_xterm_raise();
1805  } else if (!strcmp(argv[1], "deiconify")) {
1806    owl_function_xterm_deiconify();
1807  } else {
[d09e5a1]1808    owl_function_makemsg("Unknown terminal subcommand");
[ecd5dc5]1809  }
1810  return(NULL);
[7d4fbcd]1811}
1812
[e19eb97]1813char *owl_command_zlog(int argc, const char *const *argv, const char *buff)
[cf83b7a]1814{
[425c013]1815  if ((argc<2) || (argc>3)) {
[7d4fbcd]1816    owl_function_makemsg("Wrong number of arguments for zlog command");
[425c013]1817    return(NULL);
[7d4fbcd]1818  }
1819
1820  if (!strcmp(argv[1], "in")) {
[425c013]1821    if (argc>2) {
1822      owl_global_set_tty(&g, argv[2]);
1823    }
[31e48a3]1824    owl_zephyr_zlog_in();
[7d4fbcd]1825  } else if (!strcmp(argv[1], "out")) {
[425c013]1826    if (argc!=2) {
1827      owl_function_makemsg("Wrong number of arguments for zlog command");
1828      return(NULL);
1829    }
[31e48a3]1830    owl_zephyr_zlog_out();
[7d4fbcd]1831  } else {
1832    owl_function_makemsg("Invalid subcommand for zlog");
1833  }
[425c013]1834  return(NULL);
[7d4fbcd]1835}
1836
[e19eb97]1837char *owl_command_subscribe(int argc, const char *const *argv, const char *buff)
[cf83b7a]1838{
[e19eb97]1839  const char *class, *instance, *recip="";
[bde7714]1840  int temp=0;
[3617286]1841  int ret=0;
[f830d84]1842
1843  if (argc < 2) {
[7d4fbcd]1844    owl_function_makemsg("Not enough arguments to the subscribe command");
[bde7714]1845    return(NULL);
1846  }
1847  argc--;
1848  argv++;
1849
1850  if (!strcmp(argv[0], "-t")) {
1851    temp=1;
1852    argc--;
1853    argv++;
1854  }
[f830d84]1855  if (argc < 1) {
[bde7714]1856    owl_function_makemsg("Not enough arguments to the subscribe command");
1857    return(NULL);
1858  }
1859
[f830d84]1860  if (argc > 3) {
[7d4fbcd]1861    owl_function_makemsg("Too many arguments to the subscribe command");
[bde7714]1862    return(NULL);
[7d4fbcd]1863  }
1864
[f830d84]1865  class = argv[0];
1866
1867  if (argc == 1) {
1868    instance = "*";
1869  } else {
1870    instance = argv[1];
1871  }
1872
1873  if (argc <= 2) {
[7d4fbcd]1874    recip="";
[bde7714]1875  } else if (argc==3) {
1876    recip=argv[2];
[7d4fbcd]1877  }
1878
[f830d84]1879  ret = owl_function_subscribe(class, instance, recip);
[3617286]1880  if (!temp && !ret) {
[f830d84]1881    owl_zephyr_addsub(NULL, class, instance, recip);
[bde7714]1882  }
1883  return(NULL);
[7d4fbcd]1884}
1885
1886
[e19eb97]1887char *owl_command_unsubscribe(int argc, const char *const *argv, const char *buff)
[cf83b7a]1888{
[e19eb97]1889  const char *class, *instance, *recip="";
[bde7714]1890  int temp=0;
[7d4fbcd]1891
[f830d84]1892  if (argc < 2) {
[7d4fbcd]1893    owl_function_makemsg("Not enough arguments to the unsubscribe command");
[bde7714]1894    return(NULL);
1895  }
1896  argc--;
1897  argv++;
1898
1899  if (!strcmp(argv[0], "-t")) {
1900    temp=1;
1901    argc--;
1902    argv++;
1903  }
[f830d84]1904  if (argc < 1) {
1905    owl_function_makemsg("Not enough arguments to the unsubscribe command");
[bde7714]1906    return(NULL);
1907  }
1908
[f830d84]1909  if (argc > 3) {
[7d4fbcd]1910    owl_function_makemsg("Too many arguments to the unsubscribe command");
[bde7714]1911    return(NULL);
[7d4fbcd]1912  }
1913
[f830d84]1914  class = argv[0];
1915
1916  if (argc == 1) {
1917    instance = "*";
1918  } else {
1919    instance = argv[1];
1920  }
1921
1922  if (argc <= 2) {
[7d4fbcd]1923    recip="";
[bde7714]1924  } else if (argc==3) {
1925    recip=argv[2];
[7d4fbcd]1926  }
1927
[f830d84]1928  owl_function_unsubscribe(class, instance, recip);
[bde7714]1929  if (!temp) {
[f830d84]1930    owl_zephyr_delsub(NULL, class, instance, recip);
[bde7714]1931  }
1932  return(NULL);
[7d4fbcd]1933}
1934
[e19eb97]1935char *owl_command_echo(int argc, const char *const *argv, const char *buff)
[cf83b7a]1936{
[7d4fbcd]1937  buff = skiptokens(buff, 1);
1938  owl_function_popless_text(buff);
1939  return NULL;
1940}
1941
[cf83b7a]1942void owl_command_getsubs(void)
1943{
[7d4fbcd]1944  owl_function_getsubs();
1945}
1946
[cf83b7a]1947void owl_command_status(void)
1948{
[7d4fbcd]1949  owl_function_status();
1950}
1951
[e19eb97]1952char *owl_command_zwrite(int argc, const char *const *argv, const char *buff)
[cf83b7a]1953{
[987cf3f]1954  owl_zwrite *z;
[1c6c4d3]1955
[5b85d19]1956  if (!owl_global_is_havezephyr(&g)) {
1957    owl_function_makemsg("Zephyr is not available");
1958    return(NULL);
1959  }
[1c6c4d3]1960  /* check for a zwrite -m */
[987cf3f]1961  z = owl_zwrite_new(buff);
1962  if (!z) {
1963    owl_function_error("Error in zwrite arguments");
1964    return NULL;
1965  }
1966
1967  if (owl_zwrite_is_message_set(z)) {
1968    owl_function_zwrite(z, NULL);
1969    owl_zwrite_delete(z);
1970    return NULL;
[1c6c4d3]1971  }
1972
[7d4fbcd]1973  if (argc < 2) {
[987cf3f]1974    owl_zwrite_delete(z);
[7d4fbcd]1975    owl_function_makemsg("Not enough arguments to the zwrite command.");
1976  } else {
[987cf3f]1977    owl_function_zwrite_setup(z);
[7d4fbcd]1978  }
[ce7db4d]1979  return(NULL);
[7d4fbcd]1980}
1981
[e19eb97]1982char *owl_command_aimwrite(int argc, const char *const *argv, const char *buff)
[cf83b7a]1983{
[3f82515]1984  char *message = NULL;
1985  GString *recip = g_string_new("");
[e19eb97]1986  const char *const *myargv;
[3f82515]1987  int myargc;
[658dc2f]1988 
[aa5f725]1989  if (!owl_global_is_aimloggedin(&g)) {
[3f82515]1990    owl_function_error("You are not logged in to AIM.");
1991    goto err;
[d09e5a1]1992  }
[aa5f725]1993
[3f82515]1994  /* Skip argv[0]. */
1995  myargv = argv+1;
1996  myargc = argc-1;
[944004c]1997  while (myargc) {
1998    if (!strcmp(myargv[0], "-m")) {
[3f82515]1999      if (myargc <= 1) {
2000        owl_function_error("No message specified.");
2001        goto err;
[944004c]2002      }
2003      /* Once we have -m, gobble up everything else on the line */
2004      myargv++;
2005      myargc--;
[3f82515]2006      message = g_strjoinv(" ", (char**)myargv);
2007      break;
[944004c]2008    } else {
[3f82515]2009      /* squish arguments together to make one screenname w/o spaces for now */
2010      g_string_append(recip, myargv[0]);
[944004c]2011      myargv++;
2012      myargc--;
2013    }
2014  }
2015
[3f82515]2016  if (recip->str[0] == '\0') {
2017    owl_function_error("No recipient specified");
2018    goto err;
[658dc2f]2019  }
[3f82515]2020
2021  if (message != NULL)
2022    owl_function_aimwrite(recip->str, message, false);
2023  else
2024    owl_function_aimwrite_setup(recip->str);
2025 err:
2026  g_string_free(recip, true);
[ddbbcffa]2027  g_free(message);
[3f82515]2028  return NULL;
[d09e5a1]2029}
2030
[e19eb97]2031char *owl_command_loopwrite(int argc, const char *const *argv, const char *buff)
[37eab7f]2032{
2033  owl_function_loopwrite_setup();
2034  return(NULL);
2035}
2036
[e19eb97]2037char *owl_command_reply(int argc, const char *const *argv, const char *buff)
[cf83b7a]2038{
[7d4fbcd]2039  int edit=0;
2040 
[8df36cc]2041  if (argc>=2 && !strcmp("-e", argv[1])) {
[7d4fbcd]2042    edit=1;
2043    argv++;
[217a43e]2044    argc--;
[7d4fbcd]2045  }
2046
2047  if ((argc==1) || (argc==2 && !strcmp(argv[1], "all"))) {   
2048    owl_function_reply(0, !edit);
[e75011e]2049  } else if (argc==2 && !strcmp(argv[1], "sender")) {
[7d4fbcd]2050    owl_function_reply(1, !edit);
[e75011e]2051  } else if (argc==2 && !strcmp(argv[1], "zaway")) {
[c08c70a]2052    const owl_message *m;
[9e5c9f3]2053    const owl_view    *v;
[e75011e]2054    v = owl_global_get_current_view(&g);   
2055    m = owl_view_get_element(v, owl_global_get_curmsg(&g));
2056    if (m) owl_zephyr_zaway(m);
[7d4fbcd]2057  } else {
2058    owl_function_makemsg("Invalid arguments to the reply command.");
2059  }
2060  return NULL;
2061}
2062
[e19eb97]2063char *owl_command_filter(int argc, const char *const *argv, const char *buff)
[cf83b7a]2064{
[7d4fbcd]2065  owl_function_create_filter(argc, argv);
2066  return NULL;
2067}
2068
[e19eb97]2069char *owl_command_zlocate(int argc, const char *const *argv, const char *buff)
[cf83b7a]2070{
[2527615]2071  int auth;
2072 
2073  if (argc<2) {
2074    owl_function_makemsg("Too few arguments for zlocate command");
2075    return NULL;
2076  }
2077
2078  auth=1;
2079  if (!strcmp(argv[1], "-d")) {
2080    if (argc>2) {
2081      auth=0;
2082      argc--;
2083      argv++;
[7d4fbcd]2084    } else {
[2527615]2085      owl_function_makemsg("Missing arguments for zlocate command");
[7d4fbcd]2086      return NULL;
2087    }
2088  }
[2527615]2089
2090  argc--;
2091  argv++;
2092  owl_function_zlocate(argc, argv, auth);
[7d4fbcd]2093  return NULL;
2094}
2095
[3895e23]2096
2097/* Backwards compatability has made this kind of complicated:
2098 * view [<viewname>] [-f <filter> | -d <expression> | --home | -r ] [-s <style>]
2099 * view <filter>
2100 * view -d <expression>
2101 * view --home
2102 */
[e19eb97]2103char *owl_command_view(int argc, const char *const *argv, const char *buff)
[cf83b7a]2104{
[3895e23]2105  /* First take the 'view --home' and 'view -r' cases */
2106  if (argc == 2) {
2107    if (!strcmp(argv[1], "--home")) {
2108      owl_function_change_currentview_filter(owl_global_get_view_home(&g));
2109      return(NULL);
2110    } else if (!strcmp(argv[1], "-r")) {
2111      char *foo;
2112      foo=owl_function_create_negative_filter(owl_view_get_filtname(owl_global_get_current_view(&g)));
2113      owl_function_change_currentview_filter(foo);
[ddbbcffa]2114      g_free(foo);
[3895e23]2115      return(NULL);
2116    }
[7d4fbcd]2117  }
2118
[ef56a67]2119  /* Now look for 'view <filter>' */
2120  if (argc==2) {
[3895e23]2121    owl_function_change_currentview_filter(argv[1]);
[ef56a67]2122    return(NULL);
2123  }
2124
2125  /* Now get 'view -d <expression>' */
[94e4899]2126  if (argc>=3 && !strcmp(argv[1], "-d")) {
[e19eb97]2127    const char **myargv;
[7d4fbcd]2128    int i;
2129
[dfe5829]2130    /* Allocate one more than argc for the trailing NULL. */
2131    myargv = g_new0(const char*, argc+1);
[7d4fbcd]2132    myargv[0]="";
2133    myargv[1]="owl-dynamic";
2134    for (i=2; i<argc; i++) {
2135      myargv[i]=argv[i];
2136    }
2137    owl_function_create_filter(argc, myargv);
[3895e23]2138    owl_function_change_currentview_filter("owl-dynamic");
[ddbbcffa]2139    g_free(myargv);
[7d4fbcd]2140    return NULL;
2141  }
2142
[ef56a67]2143  /* Finally handle the general case */
2144  if (argc<3) {
2145    owl_function_makemsg("Too few arguments to the view command.");
2146    return(NULL);
[7d4fbcd]2147  }
[ef56a67]2148  argc--;
2149  argv++;
[3895e23]2150  if (strcmp(argv[0], "-f") &&
2151      strcmp(argv[0], "-d") &&
2152      strcmp(argv[0], "--home") &&
2153      strcmp(argv[0], "-s") &&
2154      strcmp(argv[0], "-r")) {
[ef56a67]2155    if (strcmp(argv[0], "main")) {
2156      owl_function_makemsg("No view named '%s'", argv[0]);
2157      return(NULL);
2158    }
2159    argc--;
2160    argv++;
2161  }
2162  while (argc) {
2163    if (!strcmp(argv[0], "-f")) {
2164      if (argc<2) {
2165        owl_function_makemsg("Too few argments to the view command");
2166        return(NULL);
2167      }
[3895e23]2168      owl_function_change_currentview_filter(argv[1]);
[ef56a67]2169      argc-=2;
2170      argv+=2;
2171    } else if (!strcmp(argv[0], "--home")) {
[3895e23]2172      owl_function_change_currentview_filter(owl_global_get_view_home(&g));
[ef56a67]2173      argc--;
2174      argv++;
2175    } else if (!strcmp(argv[0], "-s")) {
2176      if (argc<2) {
2177        owl_function_makemsg("Too few argments to the view command");
2178        return(NULL);
2179      }
2180      owl_function_change_style(owl_global_get_current_view(&g), argv[1]);
2181      argc-=2;
2182      argv+=2;
2183    } else {
2184      owl_function_makemsg("Too few argments to the view command");
2185      return(NULL);
2186    }
2187   
2188  }
2189  return(NULL);
[7d4fbcd]2190}
2191
[e19eb97]2192char *owl_command_show(int argc, const char *const *argv, const char *buff)
[cf83b7a]2193{
[7d4fbcd]2194  if (argc<2) {
2195    owl_function_help_for_command("show");
2196    return NULL;
2197  }
2198
2199  if (!strcmp(argv[1], "filter") || !strcmp(argv[1], "filters")) {
2200    if (argc==2) {
2201      owl_function_show_filters();
2202    } else {
2203      owl_function_show_filter(argv[2]);
2204    }
2205  } else if (argc==2 
2206             && (!strcmp(argv[1], "zpunts") || !strcmp(argv[1], "zpunted"))) {
2207    owl_function_show_zpunts();
2208  } else if (!strcmp(argv[1], "command") || !strcmp(argv[1], "commands")) {
2209    if (argc==2) {
2210      owl_function_show_commands();
2211    } else {
2212      owl_function_show_command(argv[2]);
2213    }
2214  } else if (!strcmp(argv[1], "variable") || !strcmp(argv[1], "variables")) {
2215    if (argc==2) {
2216      owl_function_show_variables();
2217    } else {
2218      owl_function_show_variable(argv[2]);
2219    }
2220  } else if (!strcmp(argv[1], "keymap") || !strcmp(argv[1], "keymaps")) {
2221    if (argc==2) {
2222      owl_function_show_keymaps();
2223    } else {
2224      owl_function_show_keymap(argv[2]);
2225    }
[ef56a67]2226  } else if (!strcmp(argv[1], "view")) {
2227    if (argc==3) {
2228      owl_function_show_view(argv[2]);
2229    } else {
2230      owl_function_show_view(NULL);
2231    }
[7d4fbcd]2232  } else if (!strcmp(argv[1], "colors")) {
2233    owl_function_show_colors();
[f1e629d]2234  } else if (!strcmp(argv[1], "styles")) {
2235    owl_function_show_styles();
[c6adf17]2236  } else if (!strcmp(argv[1], "timers")) {
2237    owl_function_show_timers();
[7d4fbcd]2238  } else if (!strcmp(argv[1], "subs") || !strcmp(argv[1], "subscriptions")) {
2239    owl_function_getsubs();
2240  } else if (!strcmp(argv[1], "terminal") || !strcmp(argv[1], "term")) {
2241    owl_function_show_term();
2242  } else if (!strcmp(argv[1], "version")) {
2243    owl_function_about();
2244  } else if (!strcmp(argv[1], "status")) {
2245    owl_function_status();
[debb15d]2246  } else if (!strcmp(argv[1], "license")) {
2247    owl_function_show_license();
[799b60e]2248  } else if (!strcmp(argv[1], "quickstart")) {
2249    owl_function_show_quickstart();
[f17bff98]2250  } else if (!strcmp(argv[1], "startup")) {
[e19eb97]2251    const char *filename;
[f17bff98]2252   
[b363d83]2253    filename=owl_global_get_startupfile(&g);
[f17bff98]2254    owl_function_popless_file(filename);
[ec6ff52]2255  } else if (!strcmp(argv[1], "errors")) {
2256    owl_function_showerrs();
[7d4fbcd]2257  } else {
2258    owl_function_makemsg("Unknown subcommand for 'show' command (see 'help show' for allowed args)");
2259    return NULL;
2260  }
2261  return NULL;
2262}
2263
[e19eb97]2264char *owl_command_viewclass(int argc, const char *const *argv, const char *buff)
[cf83b7a]2265{
[7360fab]2266  char *filtname;
[7d4fbcd]2267  if (argc!=2) {
2268    owl_function_makemsg("Wrong number of arguments to viewclass command");
2269    return NULL;
2270  }
[66e409c]2271  filtname = owl_function_classinstfilt(argv[1], NULL, owl_global_is_narrow_related(&g));
[c7fe23e]2272  if (filtname) {
2273    owl_function_change_currentview_filter(filtname);
[ddbbcffa]2274    g_free(filtname);
[c7fe23e]2275  }
[7d4fbcd]2276  return NULL;
2277}
2278
[e19eb97]2279char *owl_command_viewuser(int argc, const char *const *argv, const char *buff)
[cf83b7a]2280{
[7360fab]2281  char *filtname;
[e06f413]2282  char *longuser;
[7d4fbcd]2283  if (argc!=2) {
2284    owl_function_makemsg("Wrong number of arguments to viewuser command");
2285    return NULL;
2286  }
[e06f413]2287  longuser = long_zuser(argv[1]);
2288  filtname = owl_function_zuserfilt(longuser);
[ddbbcffa]2289  g_free(longuser);
[c7fe23e]2290  if (filtname) {
2291    owl_function_change_currentview_filter(filtname);
[ddbbcffa]2292    g_free(filtname);
[c7fe23e]2293  }
[7d4fbcd]2294  return NULL;
2295}
2296
2297
[cf83b7a]2298void owl_command_pop_message(void)
2299{
[7d4fbcd]2300  owl_function_curmsg_to_popwin();
2301}
2302
[e19eb97]2303char *owl_command_delete(int argc, const char *const *argv, const char *buff)
[cf83b7a]2304{
[b950088]2305  int move_after = 1;
2306
[8ee73f8d]2307  if (argc>1 && !strcmp(argv[1], "--no-move")) {
[b950088]2308    move_after = 0;
2309    argc--; 
2310    argv++;
2311  }
2312
[7d4fbcd]2313  if (argc==1) {
[b950088]2314    owl_function_deletecur(move_after);
[7d4fbcd]2315    return NULL;
2316  }
2317
2318  if (argc==2 && !strcmp(argv[1], "view")) {
2319    owl_function_delete_curview_msgs(1);
2320    return NULL;
2321  }
2322
2323  if (argc==2 && !strcmp(argv[1], "trash")) {
2324    owl_function_delete_automsgs();
2325    return NULL;
2326  }
2327
[7360fab]2328  if (argc==3 && (!strcmp(argv[1], "-id") || !strcmp(argv[1], "--id"))) {
[7d4fbcd]2329    owl_function_delete_by_id(atoi(argv[2]), 1);
2330    return NULL;
2331  }
2332
2333  owl_function_makemsg("Unknown arguments to delete command");
2334  return NULL;
2335}
2336
[e19eb97]2337char *owl_command_undelete(int argc, const char *const *argv, const char *buff)
[cf83b7a]2338{
[b950088]2339  int move_after = 1;
2340
[8ee73f8d]2341  if (argc>1 && !strcmp(argv[1], "--no-move")) {
[b950088]2342    move_after = 0;
2343    argc--; 
2344    argv++;
2345  }
2346
[7d4fbcd]2347  if (argc==1) {
[b950088]2348    owl_function_undeletecur(move_after);
[7d4fbcd]2349    return NULL;
2350  }
2351
2352  if (argc==2 && !strcmp(argv[1], "view")) {
2353    owl_function_delete_curview_msgs(0);
2354    return NULL;
2355  }
2356
[7360fab]2357  if (argc==3 && (!strcmp(argv[1], "-id") || !strcmp(argv[1], "--id"))) {
[7d4fbcd]2358    owl_function_delete_by_id(atoi(argv[2]), 0);
2359    return NULL;
2360  }
2361
2362  owl_function_makemsg("Unknown arguments to delete command");
2363  return NULL;
2364}
2365
[c79a047]2366void owl_command_beep(void)
[cf83b7a]2367{
[7d4fbcd]2368  owl_function_beep();
2369}
2370
[e19eb97]2371char *owl_command_colorview(int argc, const char *const *argv, const char *buff)
[cf83b7a]2372{
[8fa9562]2373  if (argc < 2 || argc > 3) {
[7d4fbcd]2374    owl_function_makemsg("Wrong number of arguments to colorview command");
2375    return NULL;
2376  }
[8fa9562]2377  owl_function_color_current_filter(argv[1], (argc == 3 ? argv[2] : NULL));
[7d4fbcd]2378  return NULL;
2379}
2380
[e19eb97]2381char *owl_command_colorclass(int argc, const char *const *argv, const char *buff)
[5e0b690]2382{
[c7fe23e]2383  char *filtname;
[5e0b690]2384 
[8fa9562]2385  if (argc < 3 || argc > 4) {
[5e0b690]2386    owl_function_makemsg("Wrong number of arguments to colorclass command");
2387    return NULL;
2388  }
2389
[66e409c]2390  filtname=owl_function_classinstfilt(argv[1], NULL, owl_global_is_narrow_related(&g));
[c7fe23e]2391  if (filtname) {
2392    (void) owl_function_color_filter(filtname, argv[2], (argc == 4 ? argv[3] : NULL));
[ddbbcffa]2393    g_free(filtname);
[c7fe23e]2394  }
[5e0b690]2395  return NULL;
2396}
2397
[e19eb97]2398char *owl_command_zpunt(int argc, const char *const *argv, const char *buff)
[cf83b7a]2399{
[7d4fbcd]2400  owl_command_zpunt_and_zunpunt(argc, argv, 0);
2401  return NULL;
2402}
2403
[e19eb97]2404char *owl_command_zunpunt(int argc, const char *const *argv, const char *buff)
[cf83b7a]2405{
[7d4fbcd]2406  owl_command_zpunt_and_zunpunt(argc, argv, 1);
2407  return NULL;
2408}
2409
[e19eb97]2410void owl_command_zpunt_and_zunpunt(int argc, const char *const *argv, int type)
[cf83b7a]2411{
[7d4fbcd]2412  /* if type==0 then zpunt
2413   * if type==1 then zunpunt
2414   */
[e19eb97]2415  const char *class, *inst, *recip;
[7d4fbcd]2416
2417  class="message";
2418  inst="";
2419  recip="*";
2420
2421  if (argc==1) {
2422    /* show current punt filters */
2423    owl_function_show_zpunts();
2424    return;
2425  } else if (argc==2) {
2426    inst=argv[1];
2427  } else if (argc==3) {
2428    class=argv[1];
2429    inst=argv[2];
2430  } else if (argc==4) {
2431    class=argv[1];
2432    inst=argv[2];
2433    recip=argv[3];
2434  } else {
2435    owl_function_makemsg("Wrong number of arguments to the zpunt command");
2436    return;
2437  }
2438
2439  owl_function_zpunt(class, inst, recip, type);
2440  if (type==0) {
2441    owl_function_makemsg("<%s, %s, %s> added to punt list.", class, inst, recip);
2442  } else if (type==1) {
2443    owl_function_makemsg("<%s, %s, %s> removed from punt list.", class, inst, recip);
2444  }
2445}
2446
[e19eb97]2447char *owl_command_smartzpunt(int argc, const char *const *argv, const char *buff)
[cf83b7a]2448{
[d36f2cb]2449  if (argc == 1) {
2450    owl_function_smartzpunt(0);
2451  } else if (argc == 2 && (!strcmp(argv[1], "-i") || !strcmp(argv[1], "--instance"))) {
2452    owl_function_smartzpunt(1);
2453  } else {
2454    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);   
2455  }
2456  return NULL;
2457}
2458
[e19eb97]2459char *owl_command_punt(int argc, const char *const *argv, const char *buff)
[ce7b824]2460{
2461  owl_command_punt_unpunt(argc, argv, buff, 0);
2462  return NULL;
2463}
2464
[e19eb97]2465char *owl_command_unpunt(int argc, const char *const *argv, const char *buff)
[ce7b824]2466{
2467  owl_command_punt_unpunt(argc, argv, buff, 1);
2468  return NULL;
2469}
2470
[e19eb97]2471void owl_command_punt_unpunt(int argc, const char *const * argv, const char *buff, int unpunt)
[ce7b824]2472{
2473  owl_list * fl;
2474  owl_filter * f;
2475  int i;
2476
2477  fl = owl_global_get_puntlist(&g);
2478  if(argc == 1) {
2479    owl_function_show_zpunts();
[2c68a93]2480  } else if(argc == 2) {
[ce7b824]2481    /* Handle :unpunt <number> */
2482    if(unpunt && (i=atoi(argv[1])) !=0) {
2483      i--;      /* Accept 1-based indexing */
2484      if(i < owl_list_get_size(fl)) {
[4d86e06]2485        f = owl_list_get_element(fl, i);
[ce7b824]2486        owl_list_remove_element(fl, i);
[23fddad]2487        owl_filter_delete(f);
[ce7b824]2488        return;
2489      } else {
[697221f]2490        owl_function_makemsg("No such filter number: %d.", i+1);
[ce7b824]2491      }
2492    }
[78f6c35]2493    const char *filter[] = {"filter", argv[1]};
2494    owl_function_punt(2, filter, unpunt);
[ce7b824]2495  } else {
[78f6c35]2496    /* Pass in argv[1]..argv[argc-1]. */
2497    owl_function_punt(argc - 1, argv + 1, unpunt);
[ce7b824]2498  }
2499}
2500
2501
[e19eb97]2502char *owl_command_getview(int argc, const char *const *argv, const char *buff)
[cf83b7a]2503{
[e19eb97]2504  const char *filtname;
[8ee73f8d]2505  if (argc != 1) {
2506    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2507    return NULL;
2508  }
2509  filtname = owl_view_get_filtname(owl_global_get_current_view(&g));
[d4927a7]2510  if (filtname) return g_strdup(filtname);
[fa4562c]2511  return NULL;
[8ee73f8d]2512}
[d36f2cb]2513
[e19eb97]2514char *owl_command_getvar(int argc, const char *const *argv, const char *buff)
[cf83b7a]2515{
[8ee73f8d]2516  if (argc != 2) {
2517    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2518    return NULL;
2519  }
[010a951]2520  return owl_variable_get_tostring(owl_global_get_vardict(&g), argv[1]);
[8ee73f8d]2521}
[7d4fbcd]2522
[e19eb97]2523char *owl_command_getfilter(int argc, const char *const *argv, const char *buf)
[cdc6ff1]2524{
[4542047]2525  const owl_filter *f;
[cdc6ff1]2526  if (argc != 2) {
2527    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2528    return NULL;
2529  }
2530  f = owl_global_get_filter(&g, argv[1]);
2531  if (!f) {
2532    return NULL;
2533  }
2534  return owl_filter_print(f);
2535}
2536
[e19eb97]2537char *owl_command_search(int argc, const char *const *argv, const char *buff)
[cf83b7a]2538{
[1fd0b25]2539  int direction;
[e19eb97]2540  const char *buffstart;
[1fd0b25]2541
2542  direction=OWL_DIRECTION_DOWNWARDS;
2543  buffstart=skiptokens(buff, 1);
2544  if (argc>1 && !strcmp(argv[1], "-r")) {
2545    direction=OWL_DIRECTION_UPWARDS;
2546    buffstart=skiptokens(buff, 2);
2547  }
2548   
2549  if (argc==1 || (argc==2 && !strcmp(argv[1], "-r"))) {
[118c919]2550    /* When continuing a search, don't consider the current message. */
2551    owl_function_search_helper(false, direction);
[1fd0b25]2552  } else {
[a728387]2553    owl_function_set_search(buffstart);
[118c919]2554    owl_function_search_helper(true, direction);
[1fd0b25]2555  }
2556 
2557  return(NULL);
2558}
2559
[e19eb97]2560char *owl_command_setsearch(int argc, const char *const *argv, const char *buff)
[987ff51]2561{
[e19eb97]2562  const char *buffstart;
[987ff51]2563
2564  buffstart=skiptokens(buff, 1);
[2ec737f]2565  owl_function_set_search(*buffstart ? buffstart : NULL);
[987ff51]2566 
2567  return(NULL);
2568}
2569
[e19eb97]2570char *owl_command_aimlogin(int argc, const char *const *argv, const char *buff)
[cf83b7a]2571{
[453bd70]2572  if ((argc<2) || (argc>3)) {
[d09e5a1]2573    owl_function_makemsg("Wrong number of arguments to aimlogin command");
2574    return(NULL);
2575  }
[aa5f725]2576
[453bd70]2577  /* if we get two arguments, ask for the password */
2578  if (argc==2) {
[9186c75]2579    owl_editwin *e = owl_function_start_password("AIM Password: ");
[d4927a7]2580    owl_editwin_set_cbdata(e, g_strdup(argv[1]), g_free);
[9186c75]2581    owl_editwin_set_callback(e, owl_callback_aimlogin);
[453bd70]2582    return(NULL);
[4211f50b]2583  } else {
2584    owl_function_aimlogin(argv[1], argv[2]);
[453bd70]2585  }
2586
[a352335c]2587  /* this is a test */
[d09e5a1]2588  return(NULL);
2589}
2590
[e19eb97]2591char *owl_command_aimlogout(int argc, const char *const *argv, const char *buff)
[cf83b7a]2592{
[aa5f725]2593  /* clear the buddylist */
2594  owl_buddylist_clear(owl_global_get_buddylist(&g));
2595
[d09e5a1]2596  owl_aim_logout();
2597  return(NULL);
2598}
2599
[e19eb97]2600char *owl_command_getstyle(int argc, const char *const *argv, const char *buff)
[216c734]2601{
[e19eb97]2602  const char *stylename;
[216c734]2603  if (argc != 1) {
2604    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2605    return NULL;
2606  }
2607  stylename = owl_view_get_style_name(owl_global_get_current_view(&g));
[d4927a7]2608  if (stylename) return g_strdup(stylename);
[fa4562c]2609  return NULL;
[216c734]2610}
2611
[e19eb97]2612char *owl_command_error(int argc, const char *const *argv, const char *buff)
[4692b70]2613{
2614    buff = skiptokens(buff, 1);
[554a2b8]2615    owl_function_error("%s", buff);
[4692b70]2616    return NULL;
2617}
2618
[e19eb97]2619char *owl_command_message(int argc, const char *const *argv, const char *buff)
[4692b70]2620{
2621    buff = skiptokens(buff, 1);
[554a2b8]2622    owl_function_makemsg("%s", buff);
[4692b70]2623    return NULL;
2624}
2625
[35d2091]2626char *owl_command_add_cmd_history(int argc, const char *const *argv, const char *buff)
2627{
2628  owl_history *hist;
2629  const char *ptr;
2630
2631  if (argc < 2) {
2632    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
2633    return NULL;
2634  }
2635
2636  ptr = skiptokens(buff, 1);
2637  hist = owl_global_get_cmd_history(&g);
2638  owl_history_store(hist, ptr);
2639  owl_history_reset(hist);
2640  /* owl_function_makemsg("History '%s' stored successfully", ptr+1); */
2641  return NULL;
2642}
2643
2644char *owl_command_with_history(int argc, const char *const *argv, const char *buff)
2645{
2646  owl_history *hist;
2647  const char *ptr;
2648
2649  if (argc < 2) {
[7473e38b]2650    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
[35d2091]2651    return NULL;
2652  }
2653
2654  ptr = skiptokens(buff, 1);
2655  if (!ptr) {
2656    owl_function_makemsg("Parse error finding command");
2657    return NULL;
2658  }
2659
2660  hist = owl_global_get_cmd_history(&g);
2661  owl_history_store(hist, ptr);
2662  owl_history_reset(hist);
2663  return owl_function_command(ptr);
2664}
2665
[12e5f17]2666void owl_command_yes(void)
[f4d32cd]2667{
[cba04e0]2668  owl_message *m;
[9e5c9f3]2669  const owl_view *v;
[e19eb97]2670  const char *cmd;
[cba04e0]2671
2672  v = owl_global_get_current_view(&g);
2673
2674  /* bail if there's no current message */
2675  if (owl_view_get_size(v) < 1) {
2676    owl_function_error("No current message.");
[12e5f17]2677    return;
[cba04e0]2678  }
2679
2680  m = owl_view_get_element(v, owl_global_get_curmsg(&g));
[f4d32cd]2681  if(!owl_message_is_question(m)) {
2682    owl_function_error("That message isn't a question.");
[12e5f17]2683    return;
[f4d32cd]2684  }
2685  if(owl_message_is_answered(m)) {
2686    owl_function_error("You already answered that question.");
[12e5f17]2687    return;
[f4d32cd]2688  }
[ad15610]2689  cmd = owl_message_get_attribute_value(m, "yescommand");
[f4d32cd]2690  if(!cmd) {
[451db9e]2691    owl_function_error("No 'yes' command!");
[12e5f17]2692    return;
[f4d32cd]2693  }
2694
2695  owl_function_command_norv(cmd);
2696  owl_message_set_isanswered(m);
[12e5f17]2697  return;
[f4d32cd]2698}
2699
[12e5f17]2700void owl_command_no(void)
[f4d32cd]2701{
[cba04e0]2702  owl_message *m;
[9e5c9f3]2703  const owl_view *v;
[e19eb97]2704  const char *cmd;
[cba04e0]2705
2706  v = owl_global_get_current_view(&g);
2707
2708  /* bail if there's no current message */
2709  if (owl_view_get_size(v) < 1) {
2710    owl_function_error("No current message.");
[12e5f17]2711    return;
[cba04e0]2712  }
2713
2714  m = owl_view_get_element(v, owl_global_get_curmsg(&g));
[f4d32cd]2715  if(!owl_message_is_question(m)) {
2716    owl_function_error("That message isn't a question.");
[12e5f17]2717    return;
[f4d32cd]2718  }
2719  if(owl_message_is_answered(m)) {
2720    owl_function_error("You already answered that question.");
[12e5f17]2721    return;
[f4d32cd]2722  }
[ad15610]2723  cmd = owl_message_get_attribute_value(m, "nocommand");
[f4d32cd]2724  if(!cmd) {
[451db9e]2725    owl_function_error("No 'no' command!");
[12e5f17]2726    return;
[f4d32cd]2727  }
2728
2729  owl_function_command_norv(cmd);
2730  owl_message_set_isanswered(m);
[12e5f17]2731  return;
[f4d32cd]2732}
2733
[7d4fbcd]2734/*********************************************************************/
2735/************************** EDIT SPECIFIC ****************************/
2736/*********************************************************************/
2737
[cf83b7a]2738void owl_command_edit_cancel(owl_editwin *e)
2739{
[10b866d]2740  owl_history *hist;
2741
[7d4fbcd]2742  owl_function_makemsg("Command cancelled.");
[10b866d]2743
[13e2096]2744  hist = owl_editwin_get_history(e);
2745  if (hist) {
[6e400cc]2746    owl_history_store(hist, owl_editwin_get_text(e));
2747    owl_history_reset(hist);
2748  }
[10b866d]2749
[2a17b63]2750  owl_global_pop_context(&g);
[7d4fbcd]2751}
2752
[cf83b7a]2753void owl_command_edit_history_prev(owl_editwin *e)
2754{
[7d4fbcd]2755  owl_history *hist;
[e19eb97]2756  const char *ptr;
[7d4fbcd]2757
[10b866d]2758  hist=owl_editwin_get_history(e);
[13e2096]2759  if (!hist)
2760    return;
[7d4fbcd]2761  if (!owl_history_is_touched(hist)) {
2762    owl_history_store(hist, owl_editwin_get_text(e));
2763    owl_history_set_partial(hist);
2764  }
2765  ptr=owl_history_get_prev(hist);
2766  if (ptr) {
2767    owl_editwin_clear(e);
2768    owl_editwin_insert_string(e, ptr);
2769  } else {
2770    owl_function_beep();
2771  }
2772}
2773
[cf83b7a]2774void owl_command_edit_history_next(owl_editwin *e)
2775{
[7d4fbcd]2776  owl_history *hist;
[e19eb97]2777  const char *ptr;
[7d4fbcd]2778
[10b866d]2779  hist=owl_editwin_get_history(e);
[13e2096]2780  if (!hist)
2781    return;
[7d4fbcd]2782  ptr=owl_history_get_next(hist);
2783  if (ptr) {
2784    owl_editwin_clear(e);
2785    owl_editwin_insert_string(e, ptr);
2786  } else {
2787    owl_function_beep();
2788  }
2789}
2790
[e19eb97]2791char *owl_command_edit_insert_text(owl_editwin *e, int argc, const char *const *argv, const char *buff)
[cf83b7a]2792{
[7d4fbcd]2793  buff = skiptokens(buff, 1);
2794  owl_editwin_insert_string(e, buff);
2795  return NULL;
2796}
2797
[435d6b2]2798void owl_command_edit_done(owl_editwin *e)
[cf83b7a]2799{
[10b866d]2800  owl_history *hist=owl_editwin_get_history(e);
2801
[0d17295]2802  if (hist) {
2803    owl_history_store(hist, owl_editwin_get_text(e));
2804    owl_history_reset(hist);
2805  }
[10b866d]2806
[c394de8]2807  /* Take a reference to the editwin, so that it survives the pop
2808   * context. TODO: We should perhaps refcount or otherwise protect
2809   * the context so that, even if a command pops a context, the
2810   * context itself will last until the command returns. */
2811  owl_editwin_ref(e);
[2a17b63]2812  owl_global_pop_context(&g);
[d83621c4]2813
2814  owl_editwin_do_callback(e);
[9190285]2815  owl_editwin_unref(e);
[7d4fbcd]2816}
2817
[435d6b2]2818void owl_command_edit_done_or_delete(owl_editwin *e)
[cf83b7a]2819{
[217a43e]2820  if (owl_editwin_is_at_end(e)) {
[435d6b2]2821    owl_command_edit_done(e);
[217a43e]2822  } else {
2823    owl_editwin_delete_char(e);
2824  }
2825}
2826
[7d4fbcd]2827
2828/*********************************************************************/
2829/*********************** POPLESS SPECIFIC ****************************/
2830/*********************************************************************/
2831
[cf83b7a]2832void owl_command_popless_quit(owl_viewwin *vw)
2833{
[8ee712e0]2834  owl_popwin *pw;
2835  pw = owl_global_get_popwin(&g);
2836  owl_global_set_popwin(&g, NULL);
[9eb38bb]2837  /* Kind of a hack, but you can only have one active viewwin right
2838   * now anyway. */
2839  if (vw == owl_global_get_viewwin(&g))
2840    owl_global_set_viewwin(&g, NULL);
2841  owl_viewwin_delete(vw);
[8ee712e0]2842  owl_popwin_delete(pw);
[2a17b63]2843  owl_global_pop_context(&g);
[7d4fbcd]2844}
Note: See TracBrowser for help on using the repository browser.