diff options
Diffstat (limited to 'doc/user-guide')
-rw-r--r-- | doc/user-guide/commands.xml | 71 |
1 files changed, 70 insertions, 1 deletions
diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index e7d56ba1..b840350c 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -846,6 +846,7 @@ <varlistentry><term>undo #[<id>]</term><listitem><para>Delete your last Tweet (or one with the given ID)</para></listitem></varlistentry> <varlistentry><term>rt <screenname|#id></term><listitem><para>Retweet someone's last Tweet (or one with the given ID)</para></listitem></varlistentry> <varlistentry><term>reply <screenname|#id></term><listitem><para>Reply to a Tweet (with a reply-to reference)</para></listitem></varlistentry> + <varlistentry><term>rawreply <screenname|#id></term><listitem><para>Reply to a Tweet (with no reply-to reference)</para></listitem></varlistentry> <varlistentry><term>report <screenname|#id></term><listitem><para>Report the given user (or the user who posted the tweet with the given ID) for sending spam. This will also block them.</para></listitem></varlistentry> <varlistentry><term>follow <screenname></term><listitem><para>Start following a person</para></listitem></varlistentry> <varlistentry><term>unfollow <screenname></term><listitem><para>Stop following a person</para></listitem></varlistentry> @@ -887,7 +888,13 @@ <bitlbee-setting name="display_name" type="string" scope="account"> <description> <para> - Currently only available for MSN connections. This setting allows you to read and change your "friendly name" for this connection. Since this is a server-side setting, it can't be changed when the account is off-line. + Currently only available for MSN connections, and for jabber groupchats. + </para> + <para> + For MSN: This setting allows you to read and change your "friendly name" for this connection. Since this is a server-side setting, it can't be changed when the account is off-line. + </para> + <para> + For jabber groupchats: this sets the default value of 'nick' for newly created groupchats. There is no way to set an account-wide nick like MSN. </para> </description> </bitlbee-setting> @@ -1083,6 +1090,68 @@ </bitlbee-setting> + <bitlbee-setting name="format_string" type="string" scope="account"> + <default>^B[^B%i^B]^B %c</default> + + <description> + <para> + This setting controls how tweets are displayed. Below are listed the two replacement attributes you may use in the string. If you wish to use a percent symbol in your string, ensure you escape it with a second percent symbol (i.e. "%%"). + </para> + + <para> + The default setting contains ^B as a control code for toggling of the bold property. Other similar properties (including color codes) are also functional in this setting. See the documentation for your IRC client for details on such control codes. + </para> + + <variablelist> + <varlistentry><term>%i</term><listitem><para>The ID of the tweet</para></listitem></varlistentry> + <varlistentry><term>%c</term><listitem><para>The text of the tweet</para></listitem></varlistentry> + </variablelist> + </description> + + </bitlbee-setting> + + <bitlbee-setting name="reply_format_string" type="string" scope="account"> + <default>^B[^B%i->%t^B]^B %c</default> + + <description> + <para> + This setting controls how replies to tweets are displayed. Below are listed the three replacement attributes you may use in the string. If you wish to use a percent symbol in your string, ensure you escape it with a second percent symbol (i.e. "%%"). + </para> + + <para> + The default setting contains ^B as a control code for toggling of the bold property. Other similar properties (including color codes) are also functional in this setting. See the documentation for your IRC client for details on such control codes. + </para> + + <variablelist> + <varlistentry><term>%i</term><listitem><para>The ID of this tweet</para></listitem></varlistentry> + <varlistentry><term>%r</term><listitem><para>The ID of the tweet being replied to</para></listitem></varlistentry> + <varlistentry><term>%c</term><listitem><para>The text of the tweet</para></listitem></varlistentry> + </variablelist> + </description> + + </bitlbee-setting> + + <bitlbee-setting name="retweet_format_string" type="string" scope="account"> + <default>^B[^B%i^B]^B RT @%a: %c</default> + + <description> + <para> + This setting controls how retweets are displayed. Below are listed the three replacement attributes you may use in the string. If you wish to use a percent symbol in your string, ensure you escape it with a second percent symbol (i.e. "%%"). + </para> + + <para> + The default setting contains ^B as a control code for toggling of the bold property. Other similar properties (including color codes) are also functional in this setting. See the documentation for your IRC client for details on such control codes. + </para> + + <variablelist> + <varlistentry><term>%i</term><listitem><para>The ID of the tweet</para></listitem></varlistentry> + <varlistentry><term>%a</term><listitem><para>The author of the original tweet</para></listitem></varlistentry> + <varlistentry><term>%c</term><listitem><para>The text of the tweet</para></listitem></varlistentry> + </variablelist> + </description> + + </bitlbee-setting> + <bitlbee-setting name="mobile_is_away" type="boolean" scope="global"> <default>false</default> |