<div dir="ltr"><div><div>That part works, thanks.<br><br></div>What seems to have changed from TM1 is that when $TM_SELECTED_TEXT is set all of<br><br>$TM_LINE_NUMBER<br>$TM_LINE_INDEX<br>$TM_CURRENT_WORD<br>$TM_CURRENT_LINE<br><br></div>are blank. The first two at least I need. Is this a bug?<br><div><br></div></div><div class="gmail_extra"><br clear="all"><div><br>07952130635<br>skype: rdrake98<br><a href="https://dl.dropboxusercontent.com/u/51971271/drake/index.html" target="_blank">blog</a> - <a href="https://twitter.com/rdrake98" target="_blank">twitter</a><br></div>
<br><div class="gmail_quote">On 11 October 2014 13:42, Allan Odgaard <span dir="ltr"><<a href="mailto:mailinglist@textmate.org" target="_blank">mailinglist@textmate.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 7 Oct 2014, at 21:42, Richard Drake wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
It's easy enough to change the current selection with a macro but is it<br>
possible in a command written in Ruby?<br>
</blockquote>
<br></span>
If you want to insert partially selected text then you can insert as snippet and use the snippet syntax to make parts selected.<br>
<br>
If you only want to select things in the document (and not insert anything) then (in ruby) you can call:<br>
<br>
    %x{ "$TM_MATE" -l«selection» }<br>
<br>
Here «selection» should be a string in the format described here <a href="http://manual.textmate.org/references.html#selection-string" target="_blank">http://manual.textmate.org/<u></u>references.html#selection-<u></u>string</a><br>
<br>
Be aware though that such command should be asynchronous, since normally TextMate would wait for your command to finish and use its result to change the document/selection (which you do not want here).<br>
<br>
______________________________<u></u>_________________<br>
textmate mailing list<br>
<a href="mailto:textmate@lists.macromates.com" target="_blank">textmate@lists.macromates.com</a><br>
<a href="http://lists.macromates.com/listinfo/textmate" target="_blank">http://lists.macromates.com/<u></u>listinfo/textmate</a></blockquote></div><br></div>