You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returns a value like this (cider-complete-at-point nil nil ...). The elements 1 and 2 on this list are nil, but Emacs expects them to be integers or markers, and so the error is signaled.
IIRC, in a situation where CIDER can't do completion, then it should simply return nil, instead of returning an invalid list.
The text was updated successfully, but these errors were encountered:
If I place point after
(inc 1)
, and try to trigger completion (tab
, in my case) I get the following error.It seems to me this is because the following form inside the
completion-at-point
functionreturns a value like this
(cider-complete-at-point nil nil ...)
. The elements 1 and 2 on this list are nil, but Emacs expects them to be integers or markers, and so the error is signaled.IIRC, in a situation where CIDER can't do completion, then it should simply return nil, instead of returning an invalid list.
The text was updated successfully, but these errors were encountered: