Wouter Van Schandevijl

Results 4 comments of Wouter Van Schandevijl

That works like a charm, thanks! I changed it to this Component for reusability :) ``` class RestartingTypist extends Component { state = {typing: true} done = () => {...

Another Authotkey user here! 😃 On my machine, Mehul's solution with the 1ms delay takes noticeably longer to actually insert some text. I found the following solution which inserts it...

The commit that fixed this issue in VSCode itself has as message: "Read synchronously from textarea" Is it possible that backspace does some stuff asynchronously? And if we turn that...

I was investigating this issue myself. We have code like the following ``` client.Query("SELECT id, name FROM Account WHERE name = '" + name + "'"); ``` So if name...