Hello all,<br><br>I am trying to find information in regards of how to copy and paste text in a new line, for example:<br><br>before snippet:<br><br>myText<br><br>after snippet:<br><br>myText<br>theText = myText<br><br>currently I am able to create a snippet that will copy the selected word and create a new line like this:
<br><br>theText = $TM_SELECTED_TEXT<br><br>but of course this replaces the selected text so I did the following<br><br>$TM_SELECTED_TEXT<br>theText = $TM_SELECTED_TEXT<br><br>and this works great if there is only one line of text but lets say I need to select a certain word in the middle of a pharragraph then i get the following
<br><br>before snippet:<br>first word theText second word<br><br>after snippet:<br>first word theText theText = theText second word<br><br>as you can tell the snippet inserts the comman din the middle of the sentence, is there a way to avoid that?
<br><br>TIA<br>Helmut<br>