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

fset: display number of commands executed in imported file, improve errors displayed

This commit is contained in:
Sébastien Helleu
2024-03-26 07:46:35 +01:00
parent 26630ada2d
commit 3db4dd2790
16 changed files with 267 additions and 81 deletions
+23 -3
View File
@@ -81,7 +81,7 @@ fset_command_fset (const void *pointer, void *data,
struct t_gui_buffer *buffer, int argc,
char **argv, char **argv_eol)
{
int num_options, line, value, i, with_help, min, max, format_number;
int num_options, line, value, i, with_help, min, max, format_number, count;
char str_command[512], str_number[64];
const char *ptr_filename;
struct t_fset_option *ptr_fset_option;
@@ -427,8 +427,28 @@ fset_command_fset (const void *pointer, void *data,
{
if (argc < 3)
WEECHAT_COMMAND_ERROR;
if (!fset_option_import (argv_eol[2]))
WEECHAT_COMMAND_ERROR;
count = fset_option_import (argv_eol[2]);
switch (count)
{
case -2:
weechat_printf (NULL,
_("%s%s: not enough memory"),
weechat_prefix ("error"), FSET_PLUGIN_NAME);
break;
case -1:
weechat_printf (NULL,
_("%s%s: file \"%s\" not found"),
weechat_prefix ("error"), FSET_PLUGIN_NAME,
argv_eol[2]);
break;
default:
weechat_printf (NULL,
NG_("%d command executed in file \"%s\"",
"%d commands executed in file \"%s\"",
count),
count, argv_eol[2]);
break;
}
return WEECHAT_RC_OK;
}