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
Latest posts tagged with #LearnNeovim on Bluesky
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
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
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
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