Adding selection #4369
-
I did the tutor, but I'm missing / not getting how to select two different words. --> Everybody wants to be a bat, How can I select Everybody and bat? My goal is to switch 2 words wich is done by Alt-( I think. But I was not able to try that yet, because I can't select both at the same time. Thanks in advance for your help . |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
For this case you could select the line and subselect ( Marks (#3720) would be another way to approach this. On that branch you could select "Everybody" with any sort of navigation, use |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick answer and the great work. Really like the project <3 |
Beta Was this translation helpful? Give feedback.
For this case you could select the line and subselect (
s
) on the regex(Everybody|bat)
.Marks (#3720) would be another way to approach this. On that branch you could select "Everybody" with any sort of navigation, use
^s
to save that selection to the marker register, select "bat" with any sort of navigation, then use^ca
to append the saved selection.