Changeset c3ab155 for commands.c


Ignore:
Timestamp:
Jun 17, 2003, 9:46:10 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
b1299da
Parents:
65e3901
Message:
Really use just one view now, named 'main' and recalculate
  messages when its filter is changed.  This is in preperation for
  other design changes
Added the 'default_style' variable
Added the 'toggle-oneline' command
the 'o' key is bound to 'toggle-oneline'
File:
1 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    raac889a rc3ab155  
    270270              "alist",
    271271              "Print a listing of buddies logged in, regardless of protocol."),
     272
     273  OWLCMD_ARGS("toggle-oneline", owl_command_toggleoneline, OWL_CTX_INTERACTIVE,
     274              "Toggle the style between oneline and the default style",
     275              "toggle-oneline",
     276              ""),
    272277
    273278  OWLCMD_VOID("recv:shiftleft", owl_command_shift_left, OWL_CTX_INTERACTIVE,
     
    866871char *owl_command_blist() {
    867872  owl_function_buddylist(1, 1, NULL);
     873  return(NULL);
     874}
     875
     876char *owl_command_toggleoneline() {
     877  owl_function_toggleoneline();
    868878  return(NULL);
    869879}
Note: See TracChangeset for help on using the changeset viewer.