186
I love vim
(discuss.tchncs.de)
Hint: :q!
Sister communities:
Community rules (click to expand)
1. Follow the site-wide rules
sudo
in Windows.Please report posts and comments that break these rules!
Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't fork-bomb your computer.
explanation for the command
ci"
:c
: change. analogous to delete(d
) followed by insert(i
)i
: inside"
: the double quoteso, it's basically change inside double quote(easier to remember as it sounds exactly what it does).
you can similarly do
di(
(delete inside parenthesis).an inferior alternative on vscodium would be
shift + alt + right/left arrow
What about yi''?
that also works. thought users would figure that out.