555
I still don't get buffers
(programming.dev)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
And I still don't really know how to use registers in vim 😂 I just use yy and paste 🥲
You just do " (listen for next character as register name)
Then, say q,w,e etc, then yy to yank as normal.
So
"wyyTo retrieve it you use
"wpTo add to it
"WyyTo view them :reg
Remember you can make "w anything, like "x or "p
And each time you yank it gets pushed into the default register history "0 "1 "2 etc
Ok I have to save that 🥲 thanks!