summaryrefslogtreecommitdiff
path: root/src/core/wee-command.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-10-13 23:49:38 +0200
committerSébastien Helleu <flashcode@flashtux.org>2023-10-15 16:19:06 +0200
commit59d11533dd62333b3af0f9a9c69d6c4cb6bf5688 (patch)
tree9cec98b8e197812574cfddef0a592280b5132e4c /src/core/wee-command.c
parent99a56b99f2067dfb01274f79f4ce0cf7daf9e1bb (diff)
downloadweechat-59d11533dd62333b3af0f9a9c69d6c4cb6bf5688.zip
core: allow wildcard in command `/item del` (issue #1956)
Diffstat (limited to 'src/core/wee-command.c')
-rw-r--r--src/core/wee-command.c47
1 files changed, 16 insertions, 31 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index a11941ebf..0a382cdf5 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -3670,8 +3670,8 @@ COMMAND_CALLBACK(input)
COMMAND_CALLBACK(item)
{
- struct t_gui_bar_item_custom *ptr_bar_item_custom;
- char str_command[4096], str_pos[16], **sargv;
+ struct t_gui_bar_item_custom *ptr_bar_item_custom, *ptr_next_bar_item_custom;
+ char str_command[4096], str_pos[16], **sargv, *name;
int i, update, sargc;
/* make C compiler happy */
@@ -3832,38 +3832,23 @@ COMMAND_CALLBACK(item)
if (string_strcmp (argv[1], "del") == 0)
{
COMMAND_MIN_ARGS(3, "del");
- if (string_strcmp (argv[2], "-all") == 0)
- {
- if (gui_custom_bar_items)
- {
- gui_bar_item_custom_free_all ();
- gui_chat_printf (NULL,
- _("All custom bar items have been deleted"));
- }
- else
- {
- gui_chat_printf (NULL, _("No custom bar item defined"));
- }
- }
- else
+ for (i = 2; i < argc; i++)
{
- for (i = 2; i < argc; i++)
+ ptr_bar_item_custom = gui_custom_bar_items;
+ while (ptr_bar_item_custom)
{
- ptr_bar_item_custom = gui_bar_item_custom_search (argv[i]);
- if (ptr_bar_item_custom)
+ ptr_next_bar_item_custom = ptr_bar_item_custom->next_item;
+ if (string_match (ptr_bar_item_custom->name, argv[i], 1))
{
+ name = strdup (ptr_bar_item_custom->name);
gui_bar_item_custom_free (ptr_bar_item_custom);
gui_chat_printf (NULL,
_("Custom bar item \"%s\" deleted"),
- argv[i]);
- }
- else
- {
- gui_chat_printf (NULL,
- _("%sCustom bar item \"%s\" not found"),
- gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
- argv[i]);
+ name);
+ if (name)
+ free (name);
}
+ ptr_bar_item_custom = ptr_next_bar_item_custom;
}
}
return WEECHAT_RC_OK;
@@ -8667,7 +8652,7 @@ command_init ()
" || rename <name> <new_name>"
" || refresh <name> [<name>...]"
" || recreate <name>"
- " || del <name>|-all"),
+ " || del <name>|<mask> [<name>|<mask>...]"),
N_(" list: list all custom bar items\n"
" add: add a custom bar item\n"
"addreplace: add or replace an existing custom bar item\n"
@@ -8681,8 +8666,8 @@ command_init ()
"bar items\n"
" recreate: set input with the command used to edit the custom "
"bar item\n"
- " del: delete a custom bar item\n"
- " -all: delete all custom bar items\n"
+ " del: delete custom bar items\n"
+ " mask: name where wildcard \"*\" is allowed\n"
"\n"
"Examples:\n"
" add item with terminal size, displayed only in buffers with "
@@ -8720,7 +8705,7 @@ command_init ()
" || rename %(custom_bar_items_names) %(custom_bar_items_names)"
" || refresh %(custom_bar_items_names)|%*"
" || recreate %(custom_bar_items_names)"
- " || del %(custom_bar_items_names)|-all",
+ " || del %(custom_bar_items_names)|%*",
&command_item, NULL, NULL);
hook_command (
NULL, "key",