Replies: 1 comment 3 replies
-
Are you using the VSCode debugger over DAP builtin feature or are you implementing it by hands? If I understood correctly, that feature was implemented in VSCode in the 1.92 monaco-vscode-api just allows to use VSCode features and doesn't implement new features, so if you've implemented it by hands, you'll either have to keep your implementation or use the whole debugger stuff |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
i have a question about customizing the lines when the execution of my code hits a breakpoint. The idea was/is to have some information shown per line like JetBrains Rider does. See this example ->
When i used the microsoft/monaco-editor i created decorations and added them to a list and applied them as soon as a breakpoint was hit. My question is: Is there something built-in in the monaco-vscode-api to ease the creation of such information or do i have to fall back to use the method i used with the plain monaco-editor? If there is something built-in with the monaco-vscode-api, how can this be done repsectively which service could help me with that?
For a better understanding, here is what i did before:
And before that i used something like that to get the tokens:
It would be great if there were something built-in in the monaco-vscode-api to be able to use its tokenization and create the line decorations.
Thank you very much.
Beta Was this translation helpful? Give feedback.
All reactions