-
I'm new to meow but not to modal editing (vim and helix in the past). I was trying to figure out a way to mark something in multiple lines and then kill to the end of the line. An example would be removing comments like: (dfndsoigfhs gerg) ; djhsdgfhghsidug
(djhfighbwr) ; difhniwoughpuiorg
(oijwsd feiojf) ;djfhwiughviruewgfoie Turning into this: (dfndsoigfhs gerg)
(djhfighbwr)
(oijwsd feiojf) I could achieve this selecting all the lines, grabbing, visiting |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Well, I see a couple of options here. I Option (press 's')
II Option (using Emacs 'query-replace-regexp')
II option is much more usefull and flexible. P.S. Also you can try to use multiline editing in some cases, but in your particular case it's not convinient. P.P.S Meow not like Evil, it not interfere (in most cases) with Emacs keys, so I recommend to more active use Emacs options to editing. |
Beta Was this translation helpful? Give feedback.
Well, I see a couple of options here.
I Option (press 's')
(dfndsoigfhs gerg) ; ;djhsdgfhghsidug
II Option (using Emacs 'query-replace-regexp')
II option is much more usefull and flexible.
P.S. Also you can try to use multiline editing in some cases, but in your particular case it's not convinient.
To use multi line editing: Select text block -> 'G' -> edit…