diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-04-18 20:24:35 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-04-18 20:24:35 +0200 |
commit | c95f3d84d08b96999d34419816490a5584e425ec (patch) | |
tree | 4154aae57d5c98a58bdf63b87935443341b5d5dc /src/gui/gui-completion.c | |
parent | 00c1c81c0b276e21d45fb504e8cde8dac05aa1af (diff) | |
download | weechat-c95f3d84d08b96999d34419816490a5584e425ec.zip |
api: add property "completion_freeze" for function buffer_set: do not stop completion when command line is updated
Diffstat (limited to 'src/gui/gui-completion.c')
-rw-r--r-- | src/gui/gui-completion.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/gui-completion.c b/src/gui/gui-completion.c index 455b9b87c..293f403f7 100644 --- a/src/gui/gui-completion.c +++ b/src/gui/gui-completion.c @@ -47,6 +47,10 @@ #include "gui-buffer.h" +int gui_completion_freeze = 0; /* 1 to freeze completions (do not */ + /* stop partial completion on key) */ + + /* * Initializes completion for a buffer. */ |