diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/exec/exec-command.c | 6 | ||||
-rw-r--r-- | src/plugins/exec/exec-config.c | 6 | ||||
-rw-r--r-- | src/plugins/plugin-api.c | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/exec/exec-command.c b/src/plugins/exec/exec-command.c index 23e2a5fc7..5ad47c9de 100644 --- a/src/plugins/exec/exec-command.c +++ b/src/plugins/exec/exec-command.c @@ -696,10 +696,10 @@ exec_command_init () "the command has some unsafe data, for example the content of a " "message from another user)\n" " -bg: run process in background: do not display process output " - "neither return code (not compatible with option -o/-n)\n" + "neither return code (not compatible with options -o/-n)\n" " -nobg: catch process output and display return code (default)\n" " -stdin: create a pipe for sending data to the process (with " - "/exec -in)\n" + "/exec -in/-inclose)\n" "-nostdin: do not create a pipe for stdin (default)\n" " -buffer: display/send output of command on this buffer (if the " "buffer is not found, a new buffer with name \"exec.exec.xxx\" is " @@ -708,7 +708,7 @@ exec_command_init () " -o: send output of command to the buffer " "(not compatible with option -bg)\n" " -n: display output of command in a new buffer (not compatible " - "with -bg)\n" + "with option -bg)\n" " -sw: switch to the output buffer (default)\n" " -nosw: don't switch to the output buffer\n" " -ln: display line numbers (default in new buffer only)\n" diff --git a/src/plugins/exec/exec-config.c b/src/plugins/exec/exec-config.c index 05ecc027e..c509050ac 100644 --- a/src/plugins/exec/exec-config.c +++ b/src/plugins/exec/exec-config.c @@ -138,15 +138,13 @@ exec_config_init () exec_config_color_flag_running = weechat_config_new_option ( exec_config_file, ptr_section, "flag_running", "color", - N_("text color for a running command flag (in exec buffer and " - "/exec -list)"), + N_("text color for a running command flag in list of commands"), NULL, 0, 0, "lightgreen", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); exec_config_color_flag_finished = weechat_config_new_option ( exec_config_file, ptr_section, "flag_finished", "color", - N_("text color for a finished command flag (in exec buffer and " - "/exec -list)"), + N_("text color for a finished command flag in list of commands"), NULL, 0, 0, "lightred", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); diff --git a/src/plugins/plugin-api.c b/src/plugins/plugin-api.c index 5dd4a983a..450e18238 100644 --- a/src/plugins/plugin-api.c +++ b/src/plugins/plugin-api.c @@ -1202,11 +1202,13 @@ plugin_api_init () &plugin_api_info_get_internal, NULL); hook_info (NULL, "term_height", N_("height of terminal"), NULL, &plugin_api_info_get_internal, NULL); - hook_info (NULL, "color_ansi_regex", N_("regular expression to match ANSI escape codes"), NULL, + hook_info (NULL, "color_ansi_regex", N_("POSIX extended regular expression to search ANSI escape codes"), NULL, &plugin_api_info_get_internal, NULL); - hook_info (NULL, "color_term2rgb", N_("terminal color (0-255) converted to RGB color"), NULL, + hook_info (NULL, "color_term2rgb", N_("terminal color (0-255) converted to RGB color"), + N_("color (terminal color: 0-255)"), &plugin_api_info_get_internal, NULL); - hook_info (NULL, "color_rgb2term", N_("RGB color converted to terminal color (0-255)"), NULL, + hook_info (NULL, "color_rgb2term", N_("RGB color converted to terminal color (0-255)"), + N_("rgb,limit (limit is optional and is set to 256 by default)"), &plugin_api_info_get_internal, NULL); /* WeeChat core infolist hooks */ |