Fixes #4455, fixes #4705, fixes #5219 Also fixes a minor bug where a dot in brackets would report incorrect completions instead of no completions. --------- Co-authored-by: Sebastian Ullrich <sebasti@nullri.ch>
10 lines
214 B
Text
10 lines
214 B
Text
inductive Direction where
|
|
| up
|
|
| right
|
|
| down
|
|
| left
|
|
|
|
-- It would be nice if this actually provided `up`, `right`, `down` and `left` in the future
|
|
def foo : Direction :=
|
|
(.)
|
|
--^ textDocument/completion
|