Earlier quoted context omitted.
Ive used vim for 10+ years, and I have known about yanking to different registers, but usually I only use the main register 99.9999% of the time. can you explain your use cases for using multiple registers? I should start doing this perhaps, but I can't think of many times I want to copy more than one thing at once, maybe once a month? But I also could be not thinking of the right examples.
"ayy - copy function signature "byy - copy return signature "ap "bp - paste either... :reg - show all registers "3p - paste 3rd "historical" register "_dd - delete into the /dev/null buffer (so you don't eat your `yy` register that you'd already yanked) It's admittedly a bit of an advanced/esoteric feature, but being able to paste "this part" or "that part" being somewhat context dependent is useful. Also useful in t…
Next question, do you usually add stuff to buffers in alphabetical order... a,b,c or do you pick something easier within reach like a,s,d (or something else entirely)