diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-24 15:40:06 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-24 15:40:06 +0100 |
commit | 907643bc9c4ef139bb010c84f32c765cfb386400 (patch) | |
tree | 70097f317574c206f3cc1e4fd0d523daef8619dd /src/gui/gui-completion.h | |
parent | 947155f3255e58646698abc5682b8a08bb8adeba (diff) | |
download | weechat-907643bc9c4ef139bb010c84f32c765cfb386400.zip |
core: add option weechat.completion.case_sensitive
Diffstat (limited to 'src/gui/gui-completion.h')
-rw-r--r-- | src/gui/gui-completion.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/gui-completion.h b/src/gui/gui-completion.h index 3563dce7b..d51b0edbd 100644 --- a/src/gui/gui-completion.h +++ b/src/gui/gui-completion.h @@ -45,6 +45,7 @@ struct t_gui_completion /* completion context */ struct t_gui_buffer *buffer; /* buffer where completion was asked */ int context; /* context: null, nick, command, cmd arg */ + int case_sensitive; /* case sensitive completion? */ char *base_command; /* cmd with arg to complete (can be NULL) */ int base_command_arg_index; /* # arg to complete (if context=cmd arg) */ char *base_word; /* word to complete (when Tab was pressed) */ |