summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index e5879d7..3e849ff 100644
--- a/README.md
+++ b/README.md
@@ -9,5 +9,15 @@ This is my Neovim configuration.
**`S`** : save current file (same as command `:w` in default Settings)
### 2 Cursor Movement
-| Shortcut | Action |
-|-----------|---------|
+| Shortcut | Action | Equivalent |
+|-----------|-------------------------------|-------------|
+| `K` | Cursor up 5 terminal lines | `5k` |
+| `J` | Cursor down 5 terminal lines | `5j` |
+
+### 3 Split Screen
+| Shortcut | Action |
+|-----------|------=-----------------------------------------------------------------------|
+| `s` `k` | Create a new horizontal split screen and place it above the current window |
+| `s` `j` | Create a new horizontal split screen and place it below the current window |
+| `s` `h` | Create a new vertical split screen and place it left to the current window |
+| `s` `l` | Create a new vertical split screen and place it right to the current window |