Recs.
Updated
SpecsUpdate
Pros
Pro Beginner friendly
One of the goals of Atom is to be a text editor for both experienced and beginner programmers. You can add keyboard shortcuts, change themes, install plugins, and change core settings by clicking through a GUI, or by manually editing config files the old fashioned way. It has the added advantage of being built using the same engine that powers Google Chrome, so actions like opening and closing tabs feel familiar even to new or non-programmers.
Pro Multi-line select and edit
Multiple cursors and column selection allow versatile ways of editing.
ctrl + d
will select the current word and each time the command is repeated, add the next occurrence of the word to the selection.
ctrl + click
or middle-mouse click
will place another cursor in the place that's clicked. Cursors can then be controlled together. This also allows selecting vertically.
Pro Extendable
Due to its modular design, almost any aspect of the editor can be changed. Even seemingly core packages, like those taking care of search and replace functionality, can be forked on GitHub, and changed and replaced in the editor.
The documentation for creating new plugins is also great, making it easier for developers to jump in and create plugins for Atom.
Pro Extensive list of packages
Atom has a built-in package manager and an extensive list of packages. Packages are written in CoffeeScript.
Pro Command line integration out of the box
Installing Atom adds two command line commands - atom and apm. The first one runs the application itself and the second one is the Atom Package Manager that's used to add and remove various components from the package listing. While these features can be set up with other editors as well, Atom takes care of them out of the box.
Cons
Recommendations
Comments
Flagged Pros + Cons
Pro Allows for instant file switching
By pressing Ctrl or Command + T and using fuzzy search, you can look for a file in your project.
Pro Free and open source
Atom is free, open source, and written in C++, LESS, and CoffeeScript.
Con Abysmally slow, poor interactivity
Responses to keystrokes have painfully long latencies, which will make fast typists very unhappy.