Skip to content

Commit

Permalink
feat: add got to definition description
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszkubacki committed Aug 22, 2024
1 parent 5f4fe67 commit 8aa3105
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions blog/2024-06-22-vim-tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,35 @@ or if multiple windows are opened close them all
:qa
```

### Navigatig

Beyond normal vim movements like scrolling with
```
ctrl + f
```
and scrolling backward with
```
ctrl + b
```
there are several especially useful if you edit code

*gd* or *gD* for go to definition of a function variable etc.

After that you can use go back to last cursor position with

```
ctl+o
```

and forward to last position with


```
ctl+i
```



### Split windows and navigate between them

The magic command to split vertically is :vsplit command
Expand Down

0 comments on commit 8aa3105

Please sign in to comment.