<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#333333">
unsubscribe<br>
<div class="moz-signature">
<meta content="text/html;" http-equiv="Content-Type">
<br>
<div class="moz-signature"><br>
<meta content="text/html;" http-equiv="Content-Type">
<title></title>
<div class="moz-signature">
<div class="moz-signature">
<div class="moz-signature"><font size="-1"><br>
*  *  *  *  *  *  *  * </font><!-- FFFF,20FF,0000 --><font size="-1">
<br>
<br>
<font color="#333333"><b>BILL EVANS</b><br>
</font></font><!-- 0000,0000,0000 --><font color="#333333" size="-1">       
developer</font><!-- FFFF,20FF,0000 --><font color="#333333" size="-1">
<br>
<br>
<b>JUICY TEMPLES</b>
<br>
</font><!-- 0000,0000,0000 --><font color="#333333" size="-1">       
2424 E. Robinson St.
<br>
        Orlando, Florida 32803 <br>
        407 895 5015 phone
<br>
       
407 895 1883 fax
<br>
        <a class="moz-txt-link-abbreviated" href="http://www.juicytemples.com">www.juicytemples.com</a></font>
</div>
</div>
<br>
</div>
</div>
</div>
<br>
<br>
<a class="moz-txt-link-abbreviated" href="mailto:textmate-request@lists.macromates.com">textmate-request@lists.macromates.com</a> wrote:
<blockquote cite="mid20050412120008.477F316BB@one.textdrive.com"
 type="cite">
  <pre wrap="">Send textmate mailing list submissions to
        <a class="moz-txt-link-abbreviated" href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>

To subscribe or unsubscribe via the World Wide Web, visit
        <a class="moz-txt-link-freetext" href="http://lists.macromates.com/mailman/listinfo/textmate">http://lists.macromates.com/mailman/listinfo/textmate</a>
or, via email, send a message with subject or body 'help' to
        <a class="moz-txt-link-abbreviated" href="mailto:textmate-request@lists.macromates.com">textmate-request@lists.macromates.com</a>

You can reach the person managing the list at
        <a class="moz-txt-link-abbreviated" href="mailto:textmate-owner@lists.macromates.com">textmate-owner@lists.macromates.com</a>

When replying, please edit your Subject line so it is more specific
than "Re: Contents of textmate digest..."


Today's Topics:

   1. Xetex (Alain Matthes)
   2. Re: Xetex (Robert Ullrey)
   3. Folding Question (Stefan Brantschen)
   4. RE: Column selection navigation (David Lee)
   5. Re: Column selection navigation (Sune Foldager)
   6. BibDesk (Thomas Schr?der)


----------------------------------------------------------------------

Message: 1
Date: Mon, 11 Apr 2005 17:34:13 +0200
From: Alain Matthes <a class="moz-txt-link-rfc2396E" href="mailto:alain.matthes@free.fr"><alain.matthes@free.fr></a>
Subject: [TxMt] Xetex
To: TM Users <a class="moz-txt-link-rfc2396E" href="mailto:textmate@lists.macromates.com"><textmate@lists.macromates.com></a>
Message-ID:
        <a class="moz-txt-link-rfc2396E" href="mailto:r02010500-1038-28B43C4AAA9F11D9856C000A95B069FE@[192.168.0.2]"><r02010500-1038-28B43C4AAA9F11D9856C000A95B069FE@[192.168.0.2]></a>
Content-Type: text/plain; charset=US-ASCII

Hello

Can I use Textmate as a front end for XeTeX ?

Did somebody  already make the experiment ?


Actually i use TM with pdfLateX and Acrobat Reader :

/usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex
--shell-escape -interaction=nonstopmode -file-line-error-style
"$TM_FILEPATH" |  perl -e
'while(<>){$f.=$_}$_=$f;s/([^\n])\n([^\n])/$1$2/g;print;'
echo
echo "Previewing..."
echo $TM_FILEPATH | perl -e 'while(<>){s/\.tex$/.pdf/;print;}' | xargs
open -a Reader

I need the -sheel-escape option because i work with pstricks and
postscript .  It's fine and i've no problem to get the PDF files.



Thanks

Alain Matthes


------------------------------

Message: 2
Date: Mon, 11 Apr 2005 09:20:03 -0700
From: Robert Ullrey <a class="moz-txt-link-rfc2396E" href="mailto:robert_ullrey@mac.com"><robert_ullrey@mac.com></a>
Subject: Re: [TxMt] Xetex
To: TM Users <a class="moz-txt-link-rfc2396E" href="mailto:textmate@lists.macromates.com"><textmate@lists.macromates.com></a>
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:7b2057ae0247d9f1a41998d75107b28d@mac.com"><7b2057ae0247d9f1a41998d75107b28d@mac.com></a>
Content-Type: text/plain; charset=US-ASCII; format=flowed

Hello Alain,
It is simple, just replace pdflatex with Xelatex.

cd `dirname "$TM_LATEX_MASTER"`
$xelatex --shell-escape -interaction=nonstopmode -file-line-error \
"$TM_FILEPATH" |  perl -e
'while(<>){$f.=$_}$_=$f;s/([^\n])\n([^\n])/$1$2/g;print;'
echo
echo "Previewing..."
echo $TM_FILEPATH | perl -e 'while(<>){s/\.tex$/.pdf/;print;}' | xargs
open -a Reader

If you want the file to show in Textmate's htmlbrowser rather then 
opening Reader, just use the existing Latex bundle command and replace 
pdflatex with Xelatex.

Cheers
Robert



On Apr 11, 2005, at 8:34 AM, Alain Matthes wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">Hello

Can I use Textmate as a front end for XeTeX ?

Did somebody  already make the experiment ?


Actually i use TM with pdfLateX and Acrobat Reader :

/usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex
--shell-escape -interaction=nonstopmode -file-line-error-style
"$TM_FILEPATH" |  perl -e
'while(<>){$f.=$_}$_=$f;s/([^\n])\n([^\n])/$1$2/g;print;'
echo
echo "Previewing..."
echo $TM_FILEPATH | perl -e 'while(<>){s/\.tex$/.pdf/;print;}' | xargs
open -a Reader

I need the -sheel-escape option because i work with pstricks and
postscript .  It's fine and i've no problem to get the PDF files.



Thanks

Alain Matthes
______________________________________________________________________
For new threads USE THIS: <a class="moz-txt-link-abbreviated" href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>
(threading gets destroyed and the universe will collapse if you don't)
<a class="moz-txt-link-freetext" href="http://lists.macromates.com/mailman/listinfo/textmate">http://lists.macromates.com/mailman/listinfo/textmate</a>

    </pre>
  </blockquote>
  <pre wrap=""><!---->


------------------------------

Message: 3
Date: Mon, 11 Apr 2005 22:23:48 +0200
From: Stefan Brantschen <a class="moz-txt-link-rfc2396E" href="mailto:sbr@acm.org"><sbr@acm.org></a>
Subject: [TxMt] Folding Question
To: <a class="moz-txt-link-abbreviated" href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:366513925a7794c7d63a4a5ab3bc40b5@acm.org"><366513925a7794c7d63a4a5ab3bc40b5@acm.org></a>
Content-Type: text/plain; charset=US-ASCII; format=flowed

Hi!

I was wondering if it's possible to define a "foldingStopMarker" that 
marks the line _above_ some pattern to end a folding. The issue here is 
that I have a markup (so called structured text) that does not use any 
explicit "end" marker, as the next "start" marker implicitly stops the 
previous.

Example markup:

= MAIN

! First Chapter

...

! Second Chapter

...


= APPENDIX

! Appendix 1

...

As you see, parts of the text are marked with "= PART", chapters with 
"! chapter", sections with "!! section" etc. Hence, "! Second Chapter" 
in this example concludes "! First Chapter", and the 
"foldingStopMarker" should point to the line above "! Second Chapter".

Any help is greatly appreciated.

Thanks and regards
- Stefan


--
Stefan Brantschen
<a class="moz-txt-link-abbreviated" href="mailto:sbr@acm.org">sbr@acm.org</a>



------------------------------

Message: 4
Date: Tue, 12 Apr 2005 10:23:48 +1000
From: "David Lee" <a class="moz-txt-link-rfc2396E" href="mailto:david@davelee.com.au"><david@davelee.com.au></a>
Subject: RE: [TxMt] Column selection navigation
To: "'TM Users'" <a class="moz-txt-link-rfc2396E" href="mailto:textmate@lists.macromates.com"><textmate@lists.macromates.com></a>
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:20050412002246.8CEA8CA1@one.textdrive.com"><20050412002246.8CEA8CA1@one.textdrive.com></a>
Content-Type: text/plain;       charset="US-ASCII"

Just something I'm curious about - 

When you select 4 full lines (for sake of argument) and enter column mode,
the caret spans 5 lines (one below the previous selection).

Is this intentional?

D

-----Original Message-----
From: Allan Odgaard [<a class="moz-txt-link-freetext" href="mailto:allan@macromates.com">mailto:allan@macromates.com</a>] 
Sent: Monday, 11 April 2005 7:36 PM
To: TM Users
Subject: Re: [TxMt] Column selection navigation

On Apr 10, 2005, at 19:13, Charilaos Skiadas wrote:

  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">But to "enter" the selection you can press cmd-option-A (works for 
normal selections only). This places the caret on the end of the 
first line, you can move it backwards and make changes.
      </pre>
    </blockquote>
    <pre wrap="">Cool, I hadn't realized you could move backward and preserve the 
selection. One question then:
Why can't the same be done when the columnar selection is enabled 
through the option key?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
It will eventually be possible. Initially I wasn't sure exactly how to
handle the case for a column-selection. If we have (selection of left
column):

    +--------------+
    |@"declaration"|   [NSDictionary ...]
    |@"keywords"   |   [NSDictionary ...]
    |@"strings"    |   [NSDictionary ...]
    +--------------+

I think using cmd-option-A should place carets like this:

     @"declaration"|   [NSDictionary ...]
     @"keywords"|      [NSDictionary ...]
     @"strings"|       [NSDictionary ...]

I.e. placing the caret before the last white-space sequence of each selected
sub-line.

______________________________________________________________________
For new threads USE THIS: <a class="moz-txt-link-abbreviated" href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a> (threading gets
destroyed and the universe will collapse if you don't)
<a class="moz-txt-link-freetext" href="http://lists.macromates.com/mailman/listinfo/textmate">http://lists.macromates.com/mailman/listinfo/textmate</a>




------------------------------

Message: 5
Date: Tue, 12 Apr 2005 10:40:26 +0200
From: Sune Foldager <a class="moz-txt-link-rfc2396E" href="mailto:cryo@cyanite.org"><cryo@cyanite.org></a>
Subject: Re: [TxMt] Column selection navigation
To: TM Users <a class="moz-txt-link-rfc2396E" href="mailto:textmate@lists.macromates.com"><textmate@lists.macromates.com></a>
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:88C05347-1254-4219-9976-19DFE9F47291@cyanite.org"><88C05347-1254-4219-9976-19DFE9F47291@cyanite.org></a>
Content-Type: text/plain; charset=US-ASCII; format=flowed

On 12-04-2005, at 02:23, David Lee wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">Just something I'm curious about -
When you select 4 full lines (for sake of argument) and enter column 
mode,
the caret spans 5 lines (one below the previous selection).
Is this intentional?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
I already bugged Allan about this.. ;-). It is due to the fact that 
when you've selected four full lines, the cursor is internally placed 
at the start of the 5. even though it's not visible.... But I think 
maybe it should only select 4 lines in column mode in that case.

  </pre>
</blockquote>
</body>
</html>