Having copied the 3x3 rectangular region containing a
's, how can I yank/paste that content at the desired point without slicing into the following text? The following is the behavior for:
M-w
(kill-ring-save),M-y
(kill-ring-save)- (copy-rectangle-as-kill),
C-x r y
(yank-rectangle)
(all using C-x SPC
(rectangle-mark-mode))
aaa
aaa
aaa
Insert
here ->aaa
Here isaaa some text after
the yanaaak point.
I would like to figure out how to yank, so that this is the result.
Insert
here ->aaa
aaa
aaa
Here is some text after
the yank point.
I'll admit that I've been yanking rectangles at the bottom of buffers and then doing a normal region kill for some time now...