From 4dbf015ec4d30aa3628cc77a82e45f16bfce3405 Mon Sep 17 00:00:00 2001 From: Hemant Sherawat Date: Fri, 19 Dec 2025 12:15:46 -0600 Subject: [PATCH 1/2] added level 7 --- README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/README.md b/README.md index 835f643..f8311ac 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,60 @@ solutions to puzzles in Vim Adventures --- ### Levels + +#### 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 From 58b811e8e044ea1ad588a60d6322326216c24cd7 Mon Sep 17 00:00:00 2001 From: Hemant Sherawat Date: Mon, 9 Mar 2026 14:32:27 -0500 Subject: [PATCH 2/2] Added Level 6 commands --- README.md | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/README.md b/README.md index f8311ac..c227e85 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,75 @@ 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: