diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-06 22:10:57 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-06 22:10:57 +0000 |
commit | 45ad955d9e0e666e1d28908651c6b04caea4a8f8 (patch) | |
tree | 8985ad16372c681ccabaa9260f9384d905bfa27d /default.theme | |
parent | 70322d695f566d0f18cd4eb1b420f7cf316ee45c (diff) | |
download | irssi-45ad955d9e0e666e1d28908651c6b04caea4a8f8.zip |
/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
Diffstat (limited to 'default.theme')
-rw-r--r-- | default.theme | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/default.theme b/default.theme index 0972a647..1146f919 100644 --- a/default.theme +++ b/default.theme @@ -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-}"; |