1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 00:33:13 +02:00

New input action "set_unread_current_buffer" to set unread marker for current buffer only (task #7286)

This commit is contained in:
Sebastien Helleu
2008-05-11 11:40:23 +02:00
parent 7871b62ef8
commit 2b1dec1679
4 changed files with 21 additions and 1 deletions
+2
View File
@@ -1201,6 +1201,8 @@ command_input (void *data, struct t_gui_buffer *buffer,
gui_input_scroll_unread ();
else if (string_strcasecmp (argv[1], "set_unread") == 0)
gui_input_set_unread ();
else if (string_strcasecmp (argv[1], "set_unread_current_buffer") == 0)
gui_input_set_unread_current_buffer ();
else if (string_strcasecmp (argv[1], "insert") == 0)
{
if (argc > 2)