Shy Agam

Results 4 comments of Shy Agam

The VSCode extension is not recognized for me. Diag. ID: FA0A526B-5CB0-48F3-B6EF-849DB959D052/20211209095751 ![image](https://user-images.githubusercontent.com/95415447/145375930-3f39f39f-8e4a-417a-bf23-1f0f0d09614e.png) ![image](https://user-images.githubusercontent.com/95415447/145375693-d5f93517-5d2b-40a7-88de-8ef36fca7786.png) Also, there's a strange behavior... When I click the 'Retry' button, VSCode opens in Restricted Mode over...

Found another clue... `await drop()` is more capable than `widget.onDrop()`. It detects VSCode drags and even plain text drags (e.g. Chrome address bar, selection in Word, etc.). The difference is,...

Found a workaround... 💪😪 While debugging the widget, I discovered how it handles the drag event. After a long trail and error I implemented my own handler and planted it...

Ran into this myself. I moved the tailwind classes in to the `md` call and it worked: ```typescript const markdown = `.......`; await div(highlight(md(markdown, 'text-md m-6'))); ``` While `div` and...