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
I have checked that this feature is not already implemented
This feature does not exist
Use case
I'm writing an Addon and also need to support StringNode and SymbolNode.
In my tools, String is used for the keys of components in a container. So, when seeing the syntax of accessing the container, I want to have auto-completion for available keys.
E.g.,
classDummyincludeApp::Deps['component_key']end
Description
To make the completion for component keys, the Completion should support also StringNode (and I also want to support SymbolNode)
Thanks for the feature suggestion! We can definitely do that, but the change is a bit more complicated than just adding the nodes to the list.
The moment you add them, it will break the completion for require and require_relative because those are currently triggering on the call node. You'll need to adjust those to work based on the string node as part of the addition.
I have checked that this feature is not already implemented
Use case
I'm writing an Addon and also need to support StringNode and SymbolNode.
In my tools, String is used for the keys of components in a container. So, when seeing the syntax of accessing the container, I want to have auto-completion for available keys.
E.g.,
Description
To make the completion for component keys, the Completion should support also StringNode (and I also want to support SymbolNode)
Implementation
The text was updated successfully, but these errors were encountered: