I would like to add a new TextExpander snippet to do the following:
I will add a url from the clipboard in the form of:
This is my text with a link [1] and one more link [2]
[1] http//link1
[2] http//link2
I wrote this:
[%filltext:name=number:default=1%] %|
[%filltext:name=number:default=1%] %clipboard
But the problem is, I don't know how to add the 2nd link after the first.
I get this instead this:
This is my text with a link [1] and one more link [2]
[2] http//link2 [1] http//link1
How can I add text in the last line?
%filltext%s have the same name, so they will be forced to have the same value -- perhaps that is the problem? – Smilin Brian Dec 5 '12 at 4:20This is my text with a link [1]\r\r[1]link1and then you want to typeand one more link, then you want to end up with the text being as in your first example. Unfortunately I can't think of a good way to accomplish this with TextExpander. It does not know how to go down to the end of your document, possibly skipping over text like[1]link1, add[2]link2then get back up to where you were typing before. – Smilin Brian Dec 9 '12 at 1:40