diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-28 03:41:17 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-28 03:41:17 +0000 |
commit | f382abee30e6ce07df88dcf43160c900dd877c09 (patch) | |
tree | 1794fb424b34fd5dcd7e78bd06e1c1544b7365e7 /default.theme | |
parent | 3c607672e6d450af3564cbb1bbdc913e7b311ba0 (diff) | |
download | irssi-f382abee30e6ce07df88dcf43160c900dd877c09.zip |
%N does now same as %n, except in .theme files it always does the
terminal default color while %n sets the "previous color".
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1150 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'default.theme')
-rw-r--r-- | default.theme | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/default.theme b/default.theme index 10d06485..0064196e 100644 --- a/default.theme +++ b/default.theme @@ -42,7 +42,8 @@ # if there was /FORMAT test %g{foo}bar, and foo = "%Y$0%n", irssi would # print yellow "foo" (as set with %Y) but "bar" would be green, which was # set at the beginning before the {foo} template. If there wasn't the %g -# at start, the normal behaviour of %n would occur. +# at start, the normal behaviour of %n would occur. If you _really_ want +# to use the terminal's default color, use %N. ############################################################################# @@ -135,7 +136,7 @@ abstracts = { # public message in channel, $0 = nick mode, $1 = nick pubmsgnick = "{msgnick $0 $1-}"; - pubnick = "%w$0-%n"; + pubnick = "%N$0-%n"; # public message in channel meant for me, $0 = nick mode, $1 = nick pubmsgmenick = "{msgnick $0 $1-}"; |