Et9797
Et9797
> I haven't setup completion before, so I may be wrong, but it seems like multi-character triggering isn't supported in [the official LSP standard](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#completionOptions)? > > But maybe it's possible...
Don't have anything concrete yet. It's been several years since I used this library. Back then I used it in my thesis to try and discover adherence patterns from EHD...
I'm getting a same issue when using Ogmios (v5.5.1) `Deserialization failed in PlutusDataEnum.PlutusDataEnum because: No variant matched`
Been having an error intolerance issue as well for a tree-sitter parser I'm making for a DSL. Member expressions inside if else blocks behave weirdly. Member expression Grammar: ``` member_expression:...
Actually managed to mitigate this issue this by adapting the tree-sitter grammar. I created a separate `block` rule to use in if else expressions, instead of having the `assignment_expression` grammar...
@tombh Right after you suggested this I indeed managed to code up a solution with `didChange`. I had posted a stack overflow question about this around that time. I just...
Any updates on this? Would be very useful for language server diagnostics
Alternative solution until query syntax becomes available: ```python missing_nodes = [] def traverse_tree(node: Node): for n in node.children: if n.is_missing: missing_nodes.append(n) traverse_tree(n) traverse_tree(tree.root_node) ```
> > Paste anything into nvim from windows clipboard > > What keys exactly did you use? Is it the system paste, i.e. ctrl-shift-v or ctrl-v ? Right click ->...
> Does pressing "+gP crash? Yes