Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a couple wrong puzzles as well as non-escaped # character in the markdown #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,17 @@ solutions to puzzles in Vim Adventures
- paste that 't' using `p` in all the spots that it indicates
- go left and down to the line delete puzzle below the house
- line delete puzzle below house (7 key presses)
- start on 'd' of 'round', `j dj k P G p`
- start on 'd' of 'round', `j dj k P G P`
- grab the '"' register specification
- go up to the house and save the 't' character into another register (such as "a) `"ax`
- go down, right, and up to the 't and x puzzle' above the 't puzzle'
- t and x puzzle (7 key presses)
- start and red boxed 'x'
- `"x gg $ "ap` (the `"ap` pastes from the "a register, if that is where you saved 't' to)
- `gg $ "ap` (the `"ap` pastes from the "a register, if that is where you saved 't' to)
- a key has appeared, `3j 2Fl` to get it
- go down, right, and down to the 'tweedle beetle puzzle'
- tweedle beetle puzzle (98 key presses)
- start on 3rd 'e' of 'beetles' → `G 3j b "bdw b "adw b "Bde j "Adw "Ade k "aP G "bP`
- start on 3rd 'e' of 'beetles' → `G b "bdw b "adw b "Bde j "Adw "Ade k "aP G "bP`
- a small brown key appears, grab it
- go back to the house at the beginning and use the small brown key on the chest
- the chest gives you the 'y' yank operator
Expand All @@ -103,7 +103,7 @@ solutions to puzzles in Vim Adventures
- Hip, Hip, Hooray! puzzle
- delete the two red boxed lines using `dd` on each
- move to the 'Hip, Hip, Hooray!' line and yank it using `yy`
- paste it where the purple bubbles are → `2P 3j 3p`
- paste it where the purple bubbles are → `2p 3j 3p`
- key appears, grab it (you now have 3)
- go all the way back to the house at the beginning, and go down to the 'Delete me! puzzle'
- Delete me! puzzle (7 key presses)
Expand Down Expand Up @@ -133,7 +133,7 @@ solutions to puzzles in Vim Adventures
#### Level 11
- go down to miracle puzzle
- miracle puzzle (15 key presses)
- yank 'you' with `ye`
- yank 'you ' with `yw`
- leave puzzle and re-enter on 'r' of 'rush' → `P b ~ 3w yw j w P rs`
- grab 'c' change operator
- go down to change puzzle
Expand Down Expand Up @@ -236,7 +236,7 @@ solutions to puzzles in Vim Adventures
- ( → `d(` when it is within the previous sentence
- ) → `d)` when it is within the next sentence
- * → `d*` when it is anywhere above you
- # → `d#` when it is anywhere above you
- \# → `d#` when it is anywhere above you
- get the '[{, [(, ]), and ]}' motions for finding unmatched braces and parenthesis
- puzzle with t and ^ bugs
- kill the 2 bugs
Expand Down