What is the difference between Sublime text and Github’s Atom [closed]

Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago. Improve this question Github announced Atom which is very similar to Sublime. Even some keyboard shortcuts like ⌘ + … Read more

Set language for syntax highlighting in Visual Studio Code

Before the confusion begins, this question is about Code, the new lightweight Visual Studio Editor. You can get it from here: https://code.visualstudio.com/ I have a textfile (.txt) with CSS in it and want to get syntax hightlighting. You can open the command palette with ctrl+shift+p. But there you can not set syntax like in Sublime. … Read more

How do I duplicate a line or selection within Visual Studio Code?

Using Microsoft’s Visual Studio Code, how do I duplicate a line of code and then move it up and down? (Similar to Sublime’s cmd+shift+d behaviour) It’s a feature that I use constantly, and am struggling using Visual Studio Code without it. 20 s 20 The commands your are looking for are editor.action.copyLinesDownAction and editor.action.copyLinesUpAction. You … Read more