Is there a way to use NORMAL MODE in command mode? #8456
Answered
by
pascalkuthe
bouillerot
asked this question in
Q&A
-
Hello, I'm trying to use Helix, and I was wondering :“How to add a pattern at the end of each of my text file ?”Let's say the pattern is to add a comma at the end of each line. In vim, I would type 👍 :%norm A, After some attempts, I can't find a way to use an equivalent of the command 'norm' as in Vim. The questions are :
If no, maybe it would be great to include that possibility ? |
Beta Was this translation helpful? Give feedback.
Answered by
pascalkuthe
Oct 3, 2023
Replies: 1 comment 1 reply
-
helix doesn't allow these kinds of command-based input instead we use multcursor. You example would be accomplished with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
bouillerot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
helix doesn't allow these kinds of command-based input instead we use multcursor.
You example would be accomplished with
%<a-s>A,
which adds a cursor on each line, and then appends something at the end of line just you would with a single cursor.