We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f4fe67 commit 8aa3105Copy full SHA for 8aa3105
blog/2024-06-22-vim-tips.md
@@ -37,6 +37,35 @@ or if multiple windows are opened close them all
37
:qa
38
```
39
40
+### Navigatig
41
+
42
+Beyond normal vim movements like scrolling with
43
+```
44
+ctrl + f
45
46
+and scrolling backward with
47
48
+ctrl + b
49
50
+there are several especially useful if you edit code
51
52
+*gd* or *gD* for go to definition of a function variable etc.
53
54
+After that you can use go back to last cursor position with
55
56
57
+ctl+o
58
59
60
+and forward to last position with
61
62
63
64
+ctl+i
65
66
67
68
69
### Split windows and navigate between them
70
71
The magic command to split vertically is :vsplit command
0 commit comments