-
I'm exploring meow from vim.
I can copy the first three lines as block and then paste in front of last three lines. and then text will be merged to
I wonder if I can achieve the same thing using meow. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In Emacs terms, what you want to achieve is called "Rectangles" (see 12.5 Rectangles). I doubt that Meow alone can do this (as it is not particularly designed for such tasks). But Meow does not modify Emacs's default key bindings, so you can rely on Emacs's default way:
In the above text area, |
Beta Was this translation helpful? Give feedback.
In Emacs terms, what you want to achieve is called "Rectangles" (see 12.5 Rectangles).
I doubt that Meow alone can do this (as it is not particularly designed for such tasks). But Meow does not modify Emacs's default key bindings, so you can rely on Emacs's default way:
one
C-x SPC
to activaterectangle-mark-mode
C-n
(3 times) to move the point to letterf
offive
C-f
(orC-e
thenC-f
) to expand the rectangular region to include all the three words and one space character afterthree
:In the above text area,
|
represents the rectangle's right margin. In Emacs, this selected/marke…