# HG changeset patch # User mikael # Date 1118518060 0 # Node ID 723433a677f0ffbcda5c2d9fd692785b53476a82 # Parent 20111c373ba3b9a522593f1e9e9f75b075bfae59 [/trunk] Changeset 253 by mikael * Use /group {fold/unfold} instead of {shrink/expand} diff -r 20111c373ba3 -r 723433a677f0 mcabber/doc/mcabber.1 --- a/mcabber/doc/mcabber.1 Sat Jun 11 19:14:55 2005 +0000 +++ b/mcabber/doc/mcabber.1 Sat Jun 11 19:27:40 2005 +0000 @@ -124,12 +124,12 @@ Delete the current buddy from our roster, unsubscribe from its presence notification and unsubscribe it from ours\&. .TP -\fB/group\fR expand|shrink|toggle -The group command changes the group display settings\&. +\fB/group\fR fold|unfold|toggle +The group command changes the current group display\&. - \fBexpand\fR expand the current group tree in the roster (syn: unfold) - \fBshrink\fR shrink the current group tree in the roster (syn: fold) - \fBtoggle\fR toggle the fold/unfold state of the current tree + \fBfold\fR fold (shrink) the current group tree in the roster + \fBunfold\fR unfold (expand) the current group tree in the roster + \fBtoggle\fR toggle the state (fold/unfold) of the current tree .TP \fB/info\fR diff -r 20111c373ba3 -r 723433a677f0 mcabber/doc/mcabber.1.html --- a/mcabber/doc/mcabber.1.html Sat Jun 11 19:14:55 2005 +0000 +++ b/mcabber/doc/mcabber.1.html Sat Jun 11 19:27:40 2005 +0000 @@ -295,30 +295,30 @@
-/group expand|shrink|toggle +/group fold|unfold|toggle
- The group command changes the group display settings. + The group command changes the current group display. @@ -328,7 +328,7 @@ @@ -543,7 +543,7 @@ diff -r 20111c373ba3 -r 723433a677f0 mcabber/doc/mcabber.1.txt --- a/mcabber/doc/mcabber.1.txt Sat Jun 11 19:14:55 2005 +0000 +++ b/mcabber/doc/mcabber.1.txt Sat Jun 11 19:27:40 2005 +0000 @@ -95,12 +95,12 @@ Delete the current buddy from our roster, unsubscribe from its presence notification and unsubscribe it from ours. -/group expand|shrink|toggle:: - The 'group' command changes the group display settings. +/group fold|unfold|toggle:: + The 'group' command changes the current group display. - 'expand';; expand the current group tree in the roster (syn: 'unfold') - 'shrink';; shrink the current group tree in the roster (syn: 'fold') - 'toggle';; toggle the fold/unfold state of the current tree + 'fold';; fold (shrink) the current group tree in the roster + 'unfold';; unfold (expand) the current group tree in the roster + 'toggle';; toggle the state (fold/unfold) of the current tree /info:: Display info on the selected entry (user, agent, group...). diff -r 20111c373ba3 -r 723433a677f0 mcabber/src/commands.c --- a/mcabber/src/commands.c Sat Jun 11 19:14:55 2005 +0000 +++ b/mcabber/src/commands.c Sat Jun 11 19:27:40 2005 +0000 @@ -116,8 +116,8 @@ compl_add_category_word(COMPL_BUFFER, "top"); // Group category - compl_add_category_word(COMPL_GROUP, "expand"); - compl_add_category_word(COMPL_GROUP, "shrink"); + compl_add_category_word(COMPL_GROUP, "fold"); + compl_add_category_word(COMPL_GROUP, "unfold"); compl_add_category_word(COMPL_GROUP, "toggle"); // Multi-line (msay) category
-expand +fold -expand the current group tree in the roster (syn: unfold) +fold (shrink) the current group tree in the roster
-shrink +unfold -shrink the current group tree in the roster (syn: fold) +unfold (expand) the current group tree in the roster
-toggle the fold/unfold state of the current tree +toggle the state (fold/unfold) of the current tree