Recs.
Updated
SpecsUpdate
Pros
Pro Hackable
Due to its modular design almost any aspect of the editor can be changed. Even seemingly core packages like the one's taking care of search and replace functionality can be forked on GitHub, changed and replaced in the editor.
The Documentation for creating new plugins is also great and thus it's easier for developers ti jump in and create plugins for Atom.
Pro Lots of packages
Atom has a built-in package manager and an extensive list of packages. Packages are written in CoffeeScript.
Pro Multi-line select and edit
Multiple cursors & column selection allow versatile ways of editing.
ctrl + d
will select the current word and each time the command is repeated add the next occurence 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 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.
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.
Cons
Con Slow
Atom is not a native application. As such performance is subpar and the lag is especially noticeable on larger projects. It also opens a surprising amount of sub-processes and leaks a considerable amount of memory.
Con Missing polish
As Atom is still relatively new, it's missing nice little touches that other text editors have implemented over the years. From simple ease of use things like middle-mouse button multi-cursor select to the ways pasted information from a spreadsheet is interpreted in multi-select situations.
Recommendations
Comments
Flagged Pros + Cons
Pro Command Palette support
The Command Palette permits fuzzy searching all available functions, settings, snippets, etc.
Pro Extensive list of packages
Atom has a built-in package manager and an extensive list of packages. Packages are written in CoffeeScript.
