/ACTION didn't print the target when there was no query/channel where

to print the action


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1188 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-02-06 22:10:57 +00:00 committed by cras
commit 45ad955d9e
4 changed files with 24 additions and 7 deletions

View file

@ -166,12 +166,18 @@ abstracts = {
## Actions (/ME stuff)
##
# used internally by this theme
action_core = "%W * $0-%n";
# generic one that's used by most actions
action = "%W * $0-%n ";
action = "{action_core $0-} ";
# own action, both private/public
ownaction = "{action $0-}";
# own action with target, both private/public
ownaction_target = "{action_core $0}%K:%c$1%n ";
# private action sent by others
pvtaction = "%W (*) $0-%n ";
pvtaction_query = "{action $0-}";