kakoune/test/regression/0-autocomplete-overrules-completers
Johannes Altmanninger 6f7c5aed10 Do not show custom completions when autocomplete is off
As reported in [1], completions provided by "set global completers
option=my_completion" activate insert mode autocompletion, even when
the autocomplete option does not have the insert mode flag.

This happens because InsertCompleter::on_option_changed() calls
InsertCompleter::setup_ifn(), which shows the completion pager.
Fix this by computing whether the completion pager is enabled;
otherwise we can return early from setup_ifn().
The completion pager is enabled if the autocompletion bit is set,
or if the user has requested explicit completion.

[1]: https://github.com/kak-lsp/kak-lsp/issues/585
2022-01-09 20:23:51 +01:00
..
in Do not show custom completions when autocomplete is off 2022-01-09 20:23:51 +01:00
out Do not show custom completions when autocomplete is off 2022-01-09 20:23:51 +01:00
rc Do not show custom completions when autocomplete is off 2022-01-09 20:23:51 +01:00
script Do not show custom completions when autocomplete is off 2022-01-09 20:23:51 +01:00