Previously, we were rendering every prefix of the dot-separated scope as its own class. So the scope meta.delimiter.method.period.coffee would make a token w/ classes: class="meta, meta-delimiter, meta-delimiter-method, meta-delimiter-method-period…" Now we just give the token each piece of the scope as a class: class="meta delimiter method period coffee" We lose a bit of meaning, in that a scope selector method.period.coffee would match this element in CSS even though it *wouldn't* in TextMate. But we also gain the behavior where longer prefixes are more specific by naturally producing more specific css selectors. So '.meta.delimiter.method' is always more specific than '.meta.delimiter', whereas '.meta-delimiter-method' ties with '.meta-delimiter'. If prefix ambiguities become a problem later we may need to revisit this approach, but I think it's good enough for now.
Atom — Futuristic Text Editing
Building from source
Be forwarned: Atom is pre-alpha software!
Requirements
Mountain Lion
The Setup™
Xcode (Get Xcode from the App Store (ugh, I know))
-
gh-setup atom
-
cd ~/github/atom &&
rake install
Atom is installed! Type atom [path] from the commmand line or find it in /Applications/Atom.app
Your ~/.atom Directory
A basic ~/.atom directory is installed when you run rake install. Take a look at ~/.atom/atom.coffee for more information.
Basic Keyboard shortcuts
Atom doesn't have much in the way of menus yet. Use these keyboard shortcuts to explore features.
cmd-o : open file/directory
cmd-n : new window
cmd-t : open fuzzy file finder
cmd-: : open command prompt
cmd-f : open command prompt with /
cmd-g : repeat the last search
cmd-r : reload the current window
cmd-alt-ctrl-s : run specs
cmd-alt-arrows : split screen in direction of arrow
cmd-alt-w : toggle word wrap
cmd-alt-f : fold selected lines
Most default OS X keybindings also work.
Init Script
Atom will require ~/.atom/atom.coffee whenever a window is opened or reloaded if it is present in your
home directory. This is a rudimentary jumping off point for your own customizations.
Command Panel
A partial implementation of the Sam command language
Examples
, selects entire file
1,4 selects lines 1-4
/pattern selects the first match after the cursor/selection
s/pattern/replacement replace first text matching pattern in current selection
s/pattern/replacement/g replace all text matching pattern in current selection
,s/pattern/replacement/g replace all text matching pattern in file
1,4s/pattern/replacement replace all text matching pattern in lines 1-4
x/pattern selects all matches in the current selections
,x/pattern selects all matches in the file
,x/pattern1/ x/pattern2 "structural regex" - selects all matches of pattern2 inside matches of pattern1
Key Bindings
Atom has a CSS based key binding scheme. We will add a nicer loading mechanism, but for now you can bind
keys by calling window.keymap.bindKeys with a CSS selector and a hash of key-pattern -> event mappings.
window.keymap.bindKeys '.editor'
'ctrl-p': 'party-time'
'ctrl-q': 'open-dialog-q'
When a keypress matches a pattern on an element that matches the selector, it will be translated to the named event, which will bubble up the DOM from the site of the keypress. Extension code can listen for the named event and react to it.
