You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/programming_stuff/underated-neovim-keymaps.mdx
+30-17Lines changed: 30 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,30 +6,43 @@ description: A list of Shortcuts/Keymaps for Neovim that are UP to the Standard
6
6
A list of Shortcuts/Keymaps for Neovim that are up to the Standard of Usefullness and Rare. These shortcuts might have a biad towards Web Development (like working with html)
7
7
8
8
## Code Comments
9
-
| Key | Description | Mode |
10
-
| -------- | ------- | :---: |
11
-
|`gcc`| toggle line comment on the line under carret | n |
|`gcc`| toggle line comment on the line under carret | n |
12
13
13
14
## Text Manipulation
15
+
14
16
### Casing
15
-
| Key | Description | Mode |
16
-
| -------- | ------- | :---: |
17
-
|`u`| Convert selection to lowercase | v |
18
-
|`U`| Convert selection to lowercase | v |
17
+
18
+
| Key | Description | Mode |
19
+
| --- | ------------------------------ | :--: |
20
+
|`u`| Convert selection to lowercase | v |
21
+
|`U`| Convert selection to lowercase | v |
19
22
20
23
### Surround
21
-
| Key | Description | Mode |
22
-
| -------- | ------- | :---: |
23
-
|`St<tag>`| Surround a Peice of text with an HTML Tag | v |
24
-
|`ysiwt<tag>`|`ys` for surround, `i` for inside, `w` for word, `t` for surround the word with a tag, `<tag>` the actuall tag's name without `<` or `>`|n|
0 commit comments