From 17db025efba3254ad524a344d6779ffbfca5c29d Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 29 Mar 2012 12:21:30 -0700 Subject: [PATCH] Made not fucked up --- README.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 72f57277b..941ea1408 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ # Atom — Futuristic Text Editing -![atom](http://www.gvsd.org/1891205613507883/lib/1891205613507883/atom_animated.gif) - ## Be forwarned: Atom is pre-alpha software! ## Download @@ -12,13 +10,21 @@ ## Basic Keyboard shortcuts `cmd-o` : open file/directory + `cmd-n` : new window + `cmd-alt-ctrl-s` : run specs + `cmd-t` : open fuzzy finder + `cmd-:` : open command prompt + `cmd-f` : open command prompt with / + `cmd-g` : repeat the last search + `cmd-alt-w` : toggle word wrap + `cmd-alt-f` : fold selected lines Most default OS X keybindings also work. @@ -28,15 +34,25 @@ Most default OS X keybindings also work. A partial implementation of the [Sam command language](http://man.cat-v.org/plan_9/1/sam) *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 ## Build from source