From dada325ba7a6bfe55507e73b666f195701cc97aa Mon Sep 17 00:00:00 2001 From: mo8it Date: Tue, 15 Aug 2023 14:09:31 +0200 Subject: [PATCH] Move Vim game to day 2 --- src/day_2/tasks.md | 9 +++++++++ src/day_4/tasks.md | 8 -------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/day_2/tasks.md b/src/day_2/tasks.md index 6884ab3..aa19ad6 100644 --- a/src/day_2/tasks.md +++ b/src/day_2/tasks.md @@ -92,3 +92,12 @@ After that it works, write a script that asks the user for the link to a documen - To capture a regex group using ripgrep, you should use `rg '.*(GROUP_PATTERN).*' -r '$1'` after replacing `GROUP_PATTERN` with the pattern that you are looking for. - If you find the link of the file using `rg`, copy it into a browser to make sure that you got a correct link to a PDF file. + +## Task: Vim game + +In this task, we are going to play a game! 🎮️ + +The game is an educational game that lets you learn the very basics of navigation in Vim which we learn about later. +But for now, I can get familiar with the basics during the game. + +Play the game on this website: [https://vim-adventures.com](https://vim-adventures.com/) diff --git a/src/day_4/tasks.md b/src/day_4/tasks.md index 4b0b6f8..df1e95d 100644 --- a/src/day_4/tasks.md +++ b/src/day_4/tasks.md @@ -145,14 +145,6 @@ Verify the redirection of the standard output and standard error in the director 1. Use `poetry shell` to enter the environment. 1. Run the script and check the generated PDF file `h_t.pdf`. -## Task: Vim game - -In this task, we are going to play a game! 🎮️ - -The game is an educational game that lets you learn the very basics of the navigation in Vim. - -Play the game on this website: [https://vim-adventures.com](https://vim-adventures.com/) - ## Task: Python rewrite Choose one of the scripts that you have written during the course and rewrite it in Python!