Is it possible to get a text typing effect in a vscode extension? I'm imagining something like a intellisense autocompletion, but once you make the selection you get the characters typed out one by one rather than just having them added all in one go ...?
I know there have been some attempts to do this with jQuery:
- jquery function to display text one character at a time
- https://www.jqueryscript.net/text/Terminal-like-Text-Typing-Effect-with-jQuery-Teletype.html
I was wondering if I can do it with one of these:
- https://github.com/tameemsafi/typewriterjs
- https://github.com/mattboldt/typed.js/
- https://github.com/EOussama/typewriterjs
hmm, but they rely on having a DOM, so maybe it has to be a custom vscode thing ... which I'm asking about https://github.com/microsoft/vscode/issues/87871 but still haven't got a definitive answer
Many thanks in advance