summaryrefslogtreecommitdiff
path: root/src/plugins/xfer/xfer-chat.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-07-11 22:43:13 +0200
committerSebastien Helleu <flashcode@flashtux.org>2013-07-11 22:43:13 +0200
commitbd3a12378eb89d00cc5c9563fe833951bab2cc52 (patch)
treefeecd1fb28ce43707a8131eb20f0e2e0365050a7 /src/plugins/xfer/xfer-chat.c
parent2cbdbb45d69de57f2cebc9479a24809fd1fc2781 (diff)
downloadweechat-bd3a12378eb89d00cc5c9563fe833951bab2cc52.zip
xfer: add option xfer.look.pv_tags
Diffstat (limited to 'src/plugins/xfer/xfer-chat.c')
-rw-r--r--src/plugins/xfer/xfer-chat.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/plugins/xfer/xfer-chat.c b/src/plugins/xfer/xfer-chat.c
index d658633ad..66217c356 100644
--- a/src/plugins/xfer/xfer-chat.c
+++ b/src/plugins/xfer/xfer-chat.c
@@ -30,6 +30,7 @@
#include "xfer.h"
#include "xfer-chat.h"
#include "xfer-buffer.h"
+#include "xfer-config.h"
/*
@@ -110,6 +111,7 @@ xfer_chat_recv_cb (void *arg_xfer, int fd)
char *buf2, *pos, *ptr_buf, *ptr_buf2, *next_ptr_buf;
char *ptr_buf_decoded, *ptr_buf_without_weechat_colors, *ptr_buf_color;
char str_tags[256], *str_color;
+ const char *pv_tags;
int num_read, length, ctcp_action;
/* make C compiler happy */
@@ -183,10 +185,13 @@ xfer_chat_recv_cb (void *arg_xfer, int fd)
ptr_buf2 = (ptr_buf_color) ?
ptr_buf_color : ((ptr_buf_without_weechat_colors) ?
ptr_buf_without_weechat_colors : ((ptr_buf_decoded) ? ptr_buf_decoded : ptr_buf));
+ pv_tags = weechat_config_string (xfer_config_look_pv_tags);
if (ctcp_action)
{
snprintf (str_tags, sizeof (str_tags),
- "irc_privmsg,irc_action,notify_message,nick_%s,log1",
+ "irc_privmsg,irc_action,%s%snick_%s,log1",
+ (pv_tags && pv_tags[0]) ? pv_tags : "",
+ (pv_tags && pv_tags[0]) ? "," : "",
xfer->remote_nick);
weechat_printf_tags (xfer->buffer,
str_tags,
@@ -205,7 +210,9 @@ xfer_chat_recv_cb (void *arg_xfer, int fd)
(xfer->remote_nick_color) ?
xfer->remote_nick_color : weechat_config_color (weechat_config_get ("weechat.color.chat_nick_other")));
snprintf (str_tags, sizeof (str_tags),
- "irc_privmsg,notify_message,prefix_nick_%s,nick_%s,log1",
+ "irc_privmsg,%s%sprefix_nick_%s,nick_%s,log1",
+ (pv_tags && pv_tags[0]) ? pv_tags : "",
+ (pv_tags && pv_tags[0]) ? "," : "",
(str_color) ? str_color : "default",
xfer->remote_nick);
if (str_color)