Skip to content
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
123 changes: 123 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,129 @@ solutions to puzzles in Vim Adventures
---

### Levels

#### Level 6

- Some texts, if you dare (8 key presses):
- Use the 8 key presses to go to the other side of the text and enter the text area from the bottom
- `b`
- `b`
- `dw`: this will delete the word

- ~ is where to (10 key presses):
- `rh`
- `e`
- `rt`
- `j`
- `w`
- `rf`

- Begin at the beginning (15 Key presses):
- `rB`
- `w`
- `e`
- `x`
- `j`
- `j`
- `X`
- `W`
- `w`
- `l`
- `rt`
- `e`
- `x`

- Shaken not stirred!
- `$`

- There are 10 types of people (13 key presses):
- `ru`
- `$`
- `k`: Use k to go to the end of the line
- `rs`
- `j`: to come back to the binary word
- `dw`

- With Indendted Code (16 Key presses):
- `$`
- `re`
- `r0`
- `j`
- `$`
- `x`
- `w`: 2 times
- `r1`
- `rn`

- function doInigo (24 key presses):
- `E`
- `d$`
- `w`: 2 times
- `j`
- `dW`
- `dd`
- `w`: 2 times
- `x`
- `j`: 2 times
- `b`: to get to to the word Stop
- `d$`
- `B`
- `l`
- `rI`

#### Level 7

- Navigating the big blog of text:
Keys to find here ` " f ", " t ", "z", " ; ", " , " `
- ` , ` is next the bush near the word 'with' on line 4
- ` ; ` is next to the bush on the text " a little wider"
- ` t ` is hiding near the two bushes together
- ` f ` is next to the bush near the word 'felt' on line 4
- ` z ` is on the second last line, next to the bush near "the Cat"


- Deleting "xx xx" (5 key presses)
- Type ` T" ` before entering through e
- ` $ ` to reach the end of the line
- ` j ` to get to the ending quote "
- ` d; ` will execute the `dT"` command on the text

Get the ` % ` before attempting the if and else puzzle

- if and else puzzle (5 key presses):
- `$`
- `%`
- `j`
- `d%`

- ft;, puzzle:
- Type `fx` before walking in
- `;`
- `j`
- `,`
- `j`
- `,`
- `;`

Get the letter G before attempting this, it's hidden in the door before the big blob of text

- What's in a name (5 Key presses):
- `gg`
- `tm` or you can do it outside of the text and use `;`
- `j`
- To exit:
- enters from " a "
- type in ` G `


- Math Equation (2 key presses):
- Enter from the ` - ` key
- Press ` % ` to jump to the " ( "
- Press ` k ` to walk up the tile
- To exit:
- typed `t2` before entering the tiles
- `;` to jump to the next occurence of the number 2
- `j` to leave
#### Level 8
- last puzzle:
- start on first twin brother, `j # E # n n ^ k $ * j j`, end on second brother
Expand Down