I would like to create a VS Code extension that will parse text on the current active editor, will use regex to extract specific strings that conform to feature flag we use and will then query another service to present to the developer the current state of that feature flag.
I’m trying to understand which VS Code extension points can be used to present such information.
I’ve found decorator example which is doing the part of extracting the interesting part from the text but it only highlight it.
I would like to take that further and present more details about that feature flag using tooltip, sub-view (I’m not sure how it is called), by hovering or any other way.