Operand can be typed twice to perform operation on whole line:
- `dd` would delete the whole line
- `2dd` would delete the whole line and the line after
- `dd` would delete the whole line
- `2dd` would delete the whole line and the line after
March 26, 2025 at 3:49 PM
Operand can be typed twice to perform operation on whole line:
- `dd` would delete the whole line
- `2dd` would delete the whole line and the line after
- `dd` would delete the whole line
- `2dd` would delete the whole line and the line after
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
- `2w` moves cursor two words forward
- `d3e` delete till the last letter of the third word
#LearnNeovim #LearnToCode #Neovim
March 26, 2025 at 3:46 PM
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
- `2w` moves cursor two words forward
- `d3e` delete till the last letter of the third word
#LearnNeovim #LearnToCode #Neovim
Neovim uses operator followed by motion to change text.
- `dw` to delete till start of the next word
- `de` to delete till end of current word
- `d$` to delete till end of the line
- `db` to delete till start of current word
- `d0` to delete till start of the line
- `dw` to delete till start of the next word
- `de` to delete till end of current word
- `d$` to delete till end of the line
- `db` to delete till start of current word
- `d0` to delete till start of the line
March 26, 2025 at 3:41 PM
Neovim uses operator followed by motion to change text.
- `dw` to delete till start of the next word
- `de` to delete till end of current word
- `d$` to delete till end of the line
- `db` to delete till start of current word
- `d0` to delete till start of the line
- `dw` to delete till start of the next word
- `de` to delete till end of current word
- `d$` to delete till end of the line
- `db` to delete till start of current word
- `d0` to delete till start of the line
And just like before, you can use capital letters:
- `W` to move cursor to next word, ignoring symbols
- `E` to move cursor to next space
- `B` to move cursor to start of word, ignoring symbols
- `W` to move cursor to next word, ignoring symbols
- `E` to move cursor to next space
- `B` to move cursor to start of word, ignoring symbols
March 26, 2025 at 3:40 PM
And just like before, you can use capital letters:
- `W` to move cursor to next word, ignoring symbols
- `E` to move cursor to next space
- `B` to move cursor to start of word, ignoring symbols
- `W` to move cursor to next word, ignoring symbols
- `E` to move cursor to next space
- `B` to move cursor to start of word, ignoring symbols
Some navigation tricks:
- `w` to move cursor to next word
- `e` to move cursor to last letter of (next) word under cursor
- `b` to move cursor to first letter of (previous) word under cursor
- `0` to move cursor to start of line
- `$` to move cursor to end of line
- `w` to move cursor to next word
- `e` to move cursor to last letter of (next) word under cursor
- `b` to move cursor to first letter of (previous) word under cursor
- `0` to move cursor to start of line
- `$` to move cursor to end of line
March 26, 2025 at 3:30 PM
Some navigation tricks:
- `w` to move cursor to next word
- `e` to move cursor to last letter of (next) word under cursor
- `b` to move cursor to first letter of (previous) word under cursor
- `0` to move cursor to start of line
- `$` to move cursor to end of line
- `w` to move cursor to next word
- `e` to move cursor to last letter of (next) word under cursor
- `b` to move cursor to first letter of (previous) word under cursor
- `0` to move cursor to start of line
- `$` to move cursor to end of line
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
- '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
March 26, 2025 at 3:24 PM
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
- '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
- '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
March 26, 2025 at 3:24 PM
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
- '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
- '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
March 26, 2025 at 3:23 PM
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
- '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
Some fo the problems I have (probably not because Pop OS but rather skill issue):
- Nvidia settings not recognzing my monitor's true resolution (I've to work around to set the resolution at the cost of clarity)
- Everytime I restart, I've to manually remap Esc and Caps keys
- i3 keyboard shortcuts 😭
- Nvidia settings not recognzing my monitor's true resolution (I've to work around to set the resolution at the cost of clarity)
- Everytime I restart, I've to manually remap Esc and Caps keys
- i3 keyboard shortcuts 😭
March 25, 2025 at 11:26 AM
Some fo the problems I have (probably not because Pop OS but rather skill issue):
- Nvidia settings not recognzing my monitor's true resolution (I've to work around to set the resolution at the cost of clarity)
- Everytime I restart, I've to manually remap Esc and Caps keys
- i3 keyboard shortcuts 😭
- Nvidia settings not recognzing my monitor's true resolution (I've to work around to set the resolution at the cost of clarity)
- Everytime I restart, I've to manually remap Esc and Caps keys
- i3 keyboard shortcuts 😭
Some of the features I like about Pop OS:
- Nvidia support
- builtin tiling feature similar to i3
- application menu interface
- Nvidia support
- builtin tiling feature similar to i3
- application menu interface
March 25, 2025 at 11:22 AM
Some of the features I like about Pop OS:
- Nvidia support
- builtin tiling feature similar to i3
- application menu interface
- Nvidia support
- builtin tiling feature similar to i3
- application menu interface