diff options
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index a782d012..2847d455 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -278,6 +278,7 @@ function M.autocomplete_word(word_chars, default_words) end if #c_list > 0 then if not buffer.auto_c_choose_single or #c_list ~= 1 then + buffer.auto_c_order = 0 -- pre-sorted buffer:auto_c_show(#root, table.concat(c_list, ' ')) else -- Scintilla does not emit AUTO_C_SELECTION in this case. This is |