ols icon indicating copy to clipboard operation
ols copied to clipboard

namespace.proc autocomplete bug in sublime text

Open thetarnav opened this issue 1 year ago • 1 comments

import "core:slice"

slice.clon // ...

in vscode accepting clone autocompletion produces slice.clone, but in sublime it produces just clone, replacing the slice. part. It only happens with procedues, not with variables or types.

It happens regardless of enable_procedure_snippet setting. (the parenthesizes are not added in both cases, even in local procedures)

haven't debug it enough to tell if this is a sublime/ols bug tbh but it happens only in odin

thetarnav avatar Aug 17 '24 21:08 thetarnav

I can repro it. But looking at the completion lsp it doesn't actually tell sublime to replace it. There is no difference between completion that works and doesn't from the lsp log. It most likely has to be sent to sublime LSP.

DanielGavin avatar Oct 03 '24 17:10 DanielGavin