From 37c9fde4f3af2a42b4d56b613421cd75de34ce5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kenneth=20S=C3=B6derlund?= Date: Fri, 22 Oct 2021 15:09:35 +0300 Subject: [PATCH] Restructuring: Rename files to easily see the order. --- introduction.md => 01-introduction.md | 2 +- movement.md => 02-movement.md | 2 +- changing-text.md => 03-changing-text.md | 2 +- text-objects.md => 04-text-objects.md | 2 +- visual-mode.md => 05-visual-mode.md | 2 +- bonus.md => 06-macros-and-registers.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename introduction.md => 01-introduction.md (98%) rename movement.md => 02-movement.md (96%) rename changing-text.md => 03-changing-text.md (97%) rename text-objects.md => 04-text-objects.md (96%) rename visual-mode.md => 05-visual-mode.md (93%) rename bonus.md => 06-macros-and-registers.md (99%) diff --git a/introduction.md b/01-introduction.md similarity index 98% rename from introduction.md rename to 01-introduction.md index dd2a622..2a797fc 100644 --- a/introduction.md +++ b/01-introduction.md @@ -80,4 +80,4 @@ set showcmd " show the command being executed on the status This is a very minimalistic configuration file, and I encourage you to investigate the many, many ways of configuring vim. -[Next up, moving around](movement.md) +[Next up, moving around](02-movement.md) diff --git a/movement.md b/02-movement.md similarity index 96% rename from movement.md rename to 02-movement.md index e4b11b9..25e9627 100644 --- a/movement.md +++ b/02-movement.md @@ -69,4 +69,4 @@ If you need help, just ask. [Assignment-1](assignment-1.txt) -[Introduction](introduction.md) || [Next up, changing text](changing-text.md) +[Introduction](01-introduction.md) || [Next up, changing text](03-changing-text.md) diff --git a/changing-text.md b/03-changing-text.md similarity index 97% rename from changing-text.md rename to 03-changing-text.md index fbca629..72c01e3 100644 --- a/changing-text.md +++ b/03-changing-text.md @@ -57,4 +57,4 @@ Paste the copied text after the current cursor position: `p`\ Paste the copied text before the current cursor position: `P` -[Introduction](introduction.md) || [Next up - Text objects](text-objects.md) +[Introduction](01-introduction.md) || [Next up - Text objects](04-text-objects.md) diff --git a/text-objects.md b/04-text-objects.md similarity index 96% rename from text-objects.md rename to 04-text-objects.md index 469dc00..9f56c7d 100644 --- a/text-objects.md +++ b/04-text-objects.md @@ -37,4 +37,4 @@ Please read the instructions in the `assignment-2.txt` file, and try working on [Assignment 2](assignment-2.txt) -[Introduction](introduction.md) || [Next up - Visual mode](visual-mode.md) +[Introduction](01-introduction.md) || [Next up - Visual mode](05-visual-mode.md) diff --git a/visual-mode.md b/05-visual-mode.md similarity index 93% rename from visual-mode.md rename to 05-visual-mode.md index ff0a3a3..f2bd428 100644 --- a/visual-mode.md +++ b/05-visual-mode.md @@ -22,4 +22,4 @@ So you can select text, you can copy or cut the selected text with `y` or `d`, y Simple and elegant. Just remember what the different verbs, modifiers and nouns are. The above command is just a sequence of multiple verb+modifier+noun sets. -[Introduction](introduction.md) || [Next up - Bonus](bonus.md) +[Introduction](01-introduction.md) || [Next up - Macros and registers](06-macros-and-registers.md) diff --git a/bonus.md b/06-macros-and-registers.md similarity index 99% rename from bonus.md rename to 06-macros-and-registers.md index 088329f..d36b1e2 100644 --- a/bonus.md +++ b/06-macros-and-registers.md @@ -61,4 +61,4 @@ Please read the instructions in the `assignment-3.txt` file, and make the necess [Openvim](https://www.openvim.com/) -[Introduction](introduction.md) +[Introduction](01-introduction.md)