Tag: vscode
-
VSCode Neovim setup
I recently switched over to using the vscode-neovim extension for VSCode. What wasn’t obvious though was how to get a plugin manager and plugins / vim customisations working. I’ll add here quickly my plugins setup as I’m using vim-surround, and a bunch of Tim Pope plugins: I’m on Linux / Ubuntu 22.04, with nvim installed…
-
Javascript REPL
I really like the simple ‘console’ REPL that you have in a browser debug tools. I wanted to recreate this in VS Code. tl;dr Debug console It turns out after lots of experimenting this can be also done with the ‘Debug Console’ when you start a debug session – see VSCode debugging. This is exactly…
-
VSCode debugging
What I don’t think a lot of VSCode users are used to is constantly living with the debugger turned on. Most web devs grew up in a world without Visual Studio, so console.log is the norm. However anyone who used Visual Studio for Visual Basic or C# development will know the power of constantly using…