6f7c5aed10
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
7 lines
361 B
Plaintext
7 lines
361 B
Plaintext
set-option global autocomplete prompt
|
|
declare-option -hidden completions line1_completions
|
|
declare-option -hidden completions line2_completions
|
|
set-option global completers option=line1_completions option=line2_completions
|
|
set-option global line1_completions "1.1+0@%val(timestamp)" "a1||a1"
|
|
set-option global line2_completions "2.1+0@%val(timestamp)" "a2||a2"
|