Embiggen or Ensmallen Selections #314
-
I have another question (sorry again...): When I select a paragraph with meow (like . p ) or any other selection, what if I want to make the selection smaller or bigger character by character? I've noticed that pressing any keys afterwards for selection will deselect what you've selected. Is there a way to grow or shrink a selection, char by char, or word by word, after you've selected something? Or, for instance, when I'm using 'x' and I overshoot something...is there a way to go back with the selection instead of starting over? I didn't see anything about it in the tutorial or the docs - I've probably missed something. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
There is currently no general meow way to grow a selection. I'd love to hear any elegant idea you might have. However, for common situations, there are convenient solutions.
It's useful to realize that meow is really very thin over plain emacs. A meow selection is really just an emacs "region" which is delimited by the "mark" and "point" (the cursor). Therefore, all plain emacs commands that manipulate the point/mark also work! So, to expand a word to the right even after pressing some keys, or from a sentence-based selection, you can just press
This is a common issue. Call |
Beta Was this translation helpful? Give feedback.
There is currently no general meow way to grow a selection. I'd love to hear any elegant idea you might have.
However, for common situations, there are convenient solutions.
meow-left-expand
andmeow-right-expand
(bound to H and L iirc)meow-next-expand
andmeow-prev-expand
(J and K)1
to expand by one more "thing" (as long you haven't pressed anything else)It's useful to realize that meow is really very thin over plain emacs. A meow selection is really just an emacs "region" which is delimited by the "mark" and "point" (the cursor). Therefore, all plain emacs…