Search found 2 matches

by mdvdlone
Fri May 13, 2011 10:30 pm
Forum: General
Topic: Apply clip to multiple lines
Replies: 2
Views: 363

ben_josephs wrote:Search | Replace... (<F8>):
Find what: .*
Replace with: my $\0;

[X] Regular expression

Replace All
Worked like a charm.
I just created a Macro for it.

Thanks for your prompt response.

Cheers.
by mdvdlone
Fri May 13, 2011 7:22 pm
Forum: General
Topic: Apply clip to multiple lines
Replies: 2
Views: 363

Apply clip to multiple lines

I have three lines:

one
two
three

I have a clip that can be applied to each line so after each selection and double clicking on the clip, I get the following:

my $one;
my $two;
my $three;

However, if I select all three lines and apply the clip, I get the following:

my $one
two
three;

Make ...