1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Make own nick and actions use default colour instead of white. Fixing ticket:729. Patch by: Tim Retout

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5112 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Alexander Færøy 2010-02-10 22:02:45 +00:00 committed by ahf
parent 2cc1db2e71
commit 47c16eca34

View File

@ -63,7 +63,7 @@ abstracts = {
## ##
# text to insert at the beginning of each non-message line # text to insert at the beginning of each non-message line
line_start = "%B-%W!%B-%n "; line_start = "%B-%n!%B-%n ";
# timestamp styling, nothing by default # timestamp styling, nothing by default
timestamp = "$*"; timestamp = "$*";
@ -138,7 +138,7 @@ abstracts = {
# $0 = nick mode, $1 = nick # $0 = nick mode, $1 = nick
ownmsgnick = "{msgnick $0 $1-}"; ownmsgnick = "{msgnick $0 $1-}";
ownnick = "%W$*%n"; ownnick = "%_$*%n";
# public message in channel, $0 = nick mode, $1 = nick # public message in channel, $0 = nick mode, $1 = nick
pubmsgnick = "{msgnick $0 $1-}"; pubmsgnick = "{msgnick $0 $1-}";
@ -163,7 +163,7 @@ abstracts = {
# own private message in query # own private message in query
ownprivmsgnick = "{msgnick $*}"; ownprivmsgnick = "{msgnick $*}";
ownprivnick = "%W$*%n"; ownprivnick = "%_$*%n";
# private message in query # private message in query
privmsgnick = "{msgnick %R$*%n}"; privmsgnick = "{msgnick %R$*%n}";
@ -173,7 +173,7 @@ abstracts = {
## ##
# used internally by this theme # used internally by this theme
action_core = "%W * $*%n"; action_core = "%_ * $*%n";
# generic one that's used by most actions # generic one that's used by most actions
action = "{action_core $*} "; action = "{action_core $*} ";
@ -185,7 +185,7 @@ abstracts = {
ownaction_target = "{action_core $0}%K:%c$1%n "; ownaction_target = "{action_core $0}%K:%c$1%n ";
# private action sent by others # private action sent by others
pvtaction = "%W (*) $*%n "; pvtaction = "%_ (*) $*%n ";
pvtaction_query = "{action $*}"; pvtaction_query = "{action $*}";
# public action sent by others # public action sent by others
@ -211,9 +211,9 @@ abstracts = {
ctcp = "%g$*%n"; ctcp = "%g$*%n";
# wallops # wallops
wallop = "%W$*%n: "; wallop = "%_$*%n: ";
wallop_nick = "%n$*"; wallop_nick = "%n$*";
wallop_action = "%W * $*%n "; wallop_action = "%_ * $*%n ";
# netsplits # netsplits
netsplit = "%R$*%n"; netsplit = "%R$*%n";
@ -235,14 +235,14 @@ abstracts = {
# DCC chat, own msg/action # DCC chat, own msg/action
dccownmsg = "[%r$0%K($1-%K)%n] "; dccownmsg = "[%r$0%K($1-%K)%n] ";
dccownnick = "%R$*%n"; dccownnick = "%R$*%n";
dccownquerynick = "%W$*%n"; dccownquerynick = "%_$*%n";
dccownaction = "{action $*}"; dccownaction = "{action $*}";
dccownaction_target = "{action_core $0}%K:%c$1%n "; dccownaction_target = "{action_core $0}%K:%c$1%n ";
# DCC chat, others # DCC chat, others
dccmsg = "[%G$1-%K(%g$0%K)%n] "; dccmsg = "[%G$1-%K(%g$0%K)%n] ";
dccquerynick = "%G$*%n"; dccquerynick = "%G$*%n";
dccaction = "%W (*dcc*) $*%n %|"; dccaction = "%_ (*dcc*) $*%n %|";
## ##
## statusbar ## statusbar