We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
buffer:auto_c_show()
1 parent cec0283 commit d915ae7Copy full SHA for d915ae7
init.lua
@@ -111,8 +111,8 @@ function M.complete_lua()
111
end
112
113
table.sort(cmpls)
114
- buffer.auto_c_order = buffer.ORDER_PRESORTED
115
- buffer:auto_c_show(#part - 1, table.concat(cmpls, string.char(buffer.auto_c_separator)))
+ buffer.auto_c_separator, buffer.auto_c_order = string.byte(' '), buffer.ORDER_PRESORTED
+ buffer:auto_c_show(#part - 1, table.concat(cmpls, ' '))
116
117
118
--- Cycle backward through command history, taking into account commands with multiple lines.
0 commit comments