docs: update Linux/vim

This commit is contained in:
Lukas Forsberg 2025-10-11 18:47:41 +02:00 committed by Lukas Forsberg
parent a4adf32857
commit 4e5e05716a

View File

@ -2,7 +2,7 @@
title: Vim title: Vim
description: description:
published: true published: true
date: 2025-10-11T16:47:26.917Z date: 2025-10-11T16:47:39.727Z
tags: tags:
editor: markdown editor: markdown
dateCreated: 2025-10-11T16:38:44.398Z dateCreated: 2025-10-11T16:38:44.398Z
@ -13,14 +13,13 @@ dateCreated: 2025-10-11T16:38:44.398Z
## Insert ## Insert
| Command | Description | | Command | Description |
| - | - | | - | - |
| i | Insert before cursor | | `i` | Insert before cursor |
| I | Insert at start of line | | `I` | Insert at start of line |
| a | Insert after cursor | | `a` | Insert after cursor |
| A | Insert at end of line | | `A` | Insert at end of line |
| o | New line below | | `o` | New line below |
| O | New line above | | `O` | New line above |
| Esc | Back to Normal mode | | `<Esc>` | Back to Normal mode |
## Navigation ## Navigation
| Command | Description | | Command | Description |
| - | - | | - | - |