Visual Studio Code
#vscode
6.3K followers·995 articles
VS Code is a new type of tool that combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. Code provides comprehensive editing and debugging support, an extensibility model, and lightweight integration with existing tools. Github
Popular this week 🔥
Woot woot! 🎉
Thank you for including Shades of Purple. I'm pretty excited about the next major version release and a pro theme .
3
What a great, detailed, and thorough post here. I agree 100% with the title. Big props Alexander González Fertel
I've used Vim a couple of times before but last month I decided to pick it back up and start using less and less VSCode long with it.
PS: You can have those 2 features that you mention from VSCode with some configs in your .vimrc file. Although file manipulation in netrw is even better with tpope plugin 'vim-vinegar'
And for multicursors, this is what I use...
nnoremap <silent> s* :let @/='\<'.expand('<cword>').'\>'<CR>cgn
xnoremap <silent> s* "sy:let @/=@s<CR>cgn
6