Trending

#LearnNeovim

Latest posts tagged with #LearnNeovim on Bluesky

Latest Top
Trending

Posts tagged #LearnNeovim

Numbers can be used with motion
- `2w` moves cursor two words forward
- `d3e` delete till the last letter of the third word

#LearnNeovim #LearnToCode #Neovim

0 0 1 0

You can use capital letter to do the operation for the entire line:
- 'X' to delete whatever is before the cursor
- 'A' to add text to end of the line
- 'I' to add text to the start of the line

#Neovim #LearnNeovim #LearnToCode

0 0 1 0

Some basic operations in Normal mode:
- 'x' to delete whatever is under the cursor
- 'a' to switch to Insert mode and add text after the cursor
- 'i' to switch to Insert mode and add text before the cursor

#LearnNeovim #CodingProductivity

0 0 1 0

To move cursor:
- 'h' for left
- 'j' for down
- 'k' for up
- 'l' for right

Why h, j, k and l? Because they're right under your fingers on the home row

#neovim #LearnToCode #LearnNeovim

0 0 1 0