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.
1 parent 575d5bd commit a828927Copy full SHA for a828927
lua/supermaven-nvim/binary/binary_handler.lua
@@ -325,7 +325,9 @@ function BinaryLifecycle:poll_once()
325
end
326
327
self.wants_polling = maybe_completion.is_incomplete
328
- if #maybe_completion.dedent > 0 and not u.ends_with(line_before_cursor, maybe_completion.dedent) then
+ if maybe_completion.dedent == nil or
329
+ (#maybe_completion.dedent > 0 and not u.ends_with(line_before_cursor, maybe_completion.dedent))
330
+ then
331
return
332
333
0 commit comments