Install
Download Atom.
Preferences
Core settings
Editor settings
Themes
UI Theme |
One Dark |
Syntax Theme |
One Dark |
One Dark UI settings
Retired theme pairs
Unity UI
+ Base16 Tomorrow Dark
Seti UI
+ Base16 Tomorrow Dark
Installed themes
Packages
Retired packages
Package settings
Project manager
My projects.cson
file:
'Client Title':
'title': 'Client Title'
'group': 'CLIENT'
'icon': 'icon-file-directory'
'paths': [
''
]
'Project Title':
'title': 'Project Title'
'group': 'PROJECT'
'icon': 'icon-star'
'paths': [
''
]
Tabs
Tree view
Whitespace
Tricks
Install command line tools
Menu Bar > Atom > Install Shell Commands
Usage
# Open a file
atom file.txt
# Open the current directory
atom .
Reference
Select search matches
With a search string entered, hit OPT + ENTER
to select all matching occurrences in the file.
Search with regular expressions
Find an HTML tag with any characters inside it:
<h2>.+</h2>
Find an HTML tag but only select the characters inside it:
(?<=<h2>).+(?=</h2>)
Find URLs ending in a trailing slash:
href="http://gravitydept.com([a-Z0-9/-])+/"
Resources