1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 23:36:37 +02:00

core: display full buffer name in output of command /buffer listvar

This commit is contained in:
Sébastien Helleu
2025-11-09 18:15:57 +01:00
parent c9d4dd48a0
commit 8c6e6bb383
+2 -2
View File
@@ -1300,7 +1300,7 @@ COMMAND_CALLBACK(buffer)
gui_chat_printf (NULL, "");
gui_chat_printf (NULL,
_("Local variables for buffer \"%s\":"),
ptr_buffer->name);
ptr_buffer->full_name);
hashtable_map (ptr_buffer->local_variables,
&command_buffer_display_localvar, NULL);
}
@@ -1308,7 +1308,7 @@ COMMAND_CALLBACK(buffer)
{
gui_chat_printf (NULL,
_("No local variable defined for buffer \"%s\""),
ptr_buffer->name);
ptr_buffer->full_name);
}
return WEECHAT_RC_OK;
}