Is there a keyboard shortcut to select a column for editing in Atom editor?

There are several ways to achieve this: Keyboard You can enable column selection mode using Ctrl+Shift+↑/↓. This will allow you to extend the cursor to multiple rows. Once you have selected all rows, release the keys, and use the Delete key to remove the text you want to replace. Once you’re done, press the Esc … Read more

Atom JavaScript Autocomplete

Since JavaScript is loosely coupled, providing a working autocomplete solution is not as easy as for statically typed languages like Java. Your best bets with Atom are the following packages: autocomplete-plus – this is now bundled with Atom as the default autocomplete provider ternjs – this looks pretty good, but requires some configuration. I suggest … Read more