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
{{ message }}
This repository was archived by the owner on Nov 5, 2024. It is now read-only.
I am using typst-lsp 0.13.0 and noticed that imported variables are not autocompleted.
Example: variable.typ
#lettest_var= 100
Example: document.typ
#import"variable.typ": *#test_var
Expected behavior:
when typing the variable name in the document.typ it should be suggested, just like functions. This also applies when do specific imports:
#import"variable.typ": test_var
Current Behavior:
Suggestions currently only seems to be based on already typed words in current lsp context / document. So variables are only suggested when the names has already been typend once in the current typst file.
Hi,
I am using
typst-lsp 0.13.0and noticed that imported variables are not autocompleted.Example:
variable.typExample:
document.typExpected behavior:
when typing the variable name in the
document.typit should be suggested, just like functions. This also applies when do specific imports:Current Behavior:
Suggestions currently only seems to be based on already typed words in current lsp context / document. So variables are only suggested when the names has already been typend once in the current
typstfile.