<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.editors.textmate.devel">
    <title>gmane.editors.textmate.devel</title>
    <link>http://blog.gmane.org/gmane.editors.textmate.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14669"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14662"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14654"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14653"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14648"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14646"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14642"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14641"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14640"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14639"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14638"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14637"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14636"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14636"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14636"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14632"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14631"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14629"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14626"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.editors.textmate.devel/14623"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14669">
    <title>[SVN] Best Practice for Packaging Ruby Gem with Bundle?</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14669</link>
    <description>&lt;pre&gt;I plan to distribute a bundle that relies on a couple ruby gems. What is the easiest way to deliver those gems with the bundle? It needs to be very user friendly, assuming that the user doesn't know how to configure a ruby environment or even install gems on their own.

I see that the Ruby on Rails bundle has a Rakefile, but I'm not familiar enough to see how it's being used.

Thanks for any guidance.

- Donovan_______________________________________________
textmate-dev mailing list
textmate-dev-qhrM8SXbD5LrQoZeqNtYVVaTQe2KTcn/&amp;lt; at &amp;gt;public.gmane.org
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Donovan Chandler</dc:creator>
    <dc:date>2012-05-03T16:00:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14662">
    <title>[SVN] Can't read `$TM_PROJECT_DIRECTORY` in TM2 bundle</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14662</link>
    <description>&lt;pre&gt;Hey there,

I'm having trouble reading `$TM_PROJECT_DIRECTORY` from within another shell
variable. I have a TM2 bundle whose settings contain this:

    {shellVariables = (
    {name = 'TM_TEST_A';
    value = 'test A: $TM_DIRECTORY';
    },
    {name = 'TM_TEST_B';
    value = 'test B: $TM_PROJECT_DIRECTORY';
    }
    );
    }

Elsewhere in the bundle (in a `Support/` file), I have Ruby like this:

    puts "ENV['TM_TEST_A'] : #{(ENV['TM_TEST_A']).inspect}"
    puts "ENV['TM_TEST_B'] : #{(ENV['TM_TEST_B']).inspect}"
    puts "ENV['TM_PROJECT_DIRECTORY'] :
#{(ENV['TM_PROJECT_DIRECTORY']).inspect}"

When this runs, the `ENV['TM_TEST_A']` and `ENV['TM_PROJECT_DIRECTORY']` output
are correct, but the `ENV['TM_TEST_B']` output fails to read
`$TM_PROJECT_DIRECTORY` from the environment:

    ENV['TM_TEST_A'] : "test A: /path/to/my.tmbundle/Support"
    ENV['TM_TEST_B'] : "test B: "
    ENV['TM_PROJECT_DIRECTORY'] : "/path/to/my.tmbundle"

In the project directory, I tried adding a `.tm_properti&lt;/pre&gt;</description>
    <dc:creator>Ron DeVera</dc:creator>
    <dc:date>2012-04-25T06:30:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14654">
    <title>[SVN] r12072 (Logtalk)</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14654</link>
    <description>&lt;pre&gt;Added syntax coloring and auto-completion support for the min/2, max/2, acos/1, and asin/1 built-in functions and the term_variables/2 built-in predicate.

Changed:
U   trunk/Bundles/Logtalk.tmbundle/Preferences/Completions.plist
U   trunk/Bundles/Logtalk.tmbundle/Syntaxes/Logtalk.plist
&lt;/pre&gt;</description>
    <dc:creator>Paulo Jorge Lopes de Moura</dc:creator>
    <dc:date>2012-03-05T23:16:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14653">
    <title>[SVN] Indentation issues</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14653</link>
    <description>&lt;pre&gt;
Hi,

TM have a "indentNextLinePattern" but not "unindentNextLinePattern". Is there a way to define a pattern such that the next line is unindented but not the current line? I tried "decreaseIndentPattern" but this setting insist on acting on the current line (while "increaseIndentPattern" acts on the next line; why the apparent lack of symmetry?). The only indentation rule I have (for the Logtalk language) is:

increaseIndentPattern = '(:-|--&amp;gt;)$';

This rule works as intended. For example, if I type:

foo :-

as soon as I hit return, the first character in the next line will be intended:

foo :-
bar

Now, I would like to unindent the line that *follows* "\.$". For example:

foo :-
bar.
foo2

But I cannot find a way to get this behavior using "decreaseIndentPattern", which results in the line ending with a "." getting unindented instead of the next line.

On TM2, using the same settings that work fine on TM1, indentation is driving me crazy and preventing me to switch to TM2 for everyday programming&lt;/pre&gt;</description>
    <dc:creator>Paulo Moura</dc:creator>
    <dc:date>2012-03-02T15:27:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14648">
    <title>[SVN] Problem with R bundle</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14648</link>
    <description>&lt;pre&gt;Hi ,
I have a problem with the R bundle, when I try to put  " ( " in a code in
R, the program stop and I have to close and open again TextMate, the only
way to put the " ( " is by copy - paste.
Do you have any solution for that problem?

Thanks.

&lt;/pre&gt;</description>
    <dc:creator>gualdron .</dc:creator>
    <dc:date>2012-02-29T13:52:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14646">
    <title>[SVN]  tm2 update modification time of all opened files on save</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14646</link>
    <description>&lt;pre&gt;
Hi. I have a problem with latest TM2 alpha. When I hit CMD+S it keeps
updating all opened in this session files. Not opened tabs, not only current
file. All ever opened files. It messes up background sync to remote server.
Can you please check and fix this?
&lt;/pre&gt;</description>
    <dc:creator>suprMax</dc:creator>
    <dc:date>2012-02-24T11:15:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14642">
    <title>[SVN] "Buffer/Cursor position changed" event</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14642</link>
    <description>&lt;pre&gt;Hi Allan,

One feature that I have always missed in TextMate is a browsing history. I envision something that whenever I move the cursor more than a few lines or switch to another file records the previous position. Then in a utility window it would on demand show the last n locations with a few lines of context. A click would return me to that place.

Or keyboard shortcuts for back/forward in the history.

Any chance TM2 could provide the necessary events for something like that?

Thanks

Gerd
&lt;/pre&gt;</description>
    <dc:creator>Gerd Knops</dc:creator>
    <dc:date>2012-01-12T18:12:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14641">
    <title>[SVN] How to distribute app to be used by multiple bundles?</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14641</link>
    <description>&lt;pre&gt;Hi All,

I wrote an Application that I intend to use with multiple bundles.

That application is basically a replacement for the HTML output window for those cases where the command is a long-running one (TM2 currently only allows one external process to feed into the window).

The app is being used for an upcoming Xcode4 bundle and allows to build and run multiple apps simultaneously. I also intend to add a run command for the perl bundle that uses this app, and it would be useful for any other commands that start long-running executables and want to monitor the output.

So the question is how to distribute such an app that eventually multiple bundles will depend upon.

I guess one option would be to place the app into a bundle itself. Downsides are:

- AFAIK there is no clean way of finding other bundles' support path
- There is no support for bundle dependencies

So the other option would be to leave it up to the user to install the app, and have commands using the app alert "you must install xx, availabl&lt;/pre&gt;</description>
    <dc:creator>Gerd Knops</dc:creator>
    <dc:date>2012-01-12T18:05:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14640">
    <title>[SVN] r12071 (R)</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14640</link>
    <description>&lt;pre&gt;• show dialog if TM_REXEC wasn't set correctly

Changed:
U   trunk/Bundles/R.tmbundle/Support/bin/RhelperDaemon.rb
U   trunk/Bundles/R.tmbundle/Support/lib/help.markdown
_______________________________________________
textmate-dev mailing list
textmate-dev&amp;lt; at &amp;gt;lists.macromates.com
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Hans-Jörg Bibiko</dc:creator>
    <dc:date>2012-01-12T16:41:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14639">
    <title>[SVN] r12070 (R Console (Rdaemon))</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14639</link>
    <description>&lt;pre&gt;• applied TM_REXEC to Rdaemon as well

Changed:
U   trunk/Bundles/R Console (Rdaemon).tmbundle/Support/Rdaemon/daemon/Rdaemon.rb
U   trunk/Bundles/R Console (Rdaemon).tmbundle/Support/lib/help.markdown
_______________________________________________
textmate-dev mailing list
textmate-dev&amp;lt; at &amp;gt;lists.macromates.com
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Hans-Jörg Bibiko</dc:creator>
    <dc:date>2012-01-12T16:40:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14638">
    <title>[SVN] r12069 (R)</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14638</link>
    <description>&lt;pre&gt;• applied TM_REXEC to RHelper daemon as well
• fixed a minor issue for displaying function names in Symbol List

Changed:
U   trunk/Bundles/R.tmbundle/Preferences/Methods.tmPreferences
U   trunk/Bundles/R.tmbundle/Support/bin/RhelperDaemon.rb
_______________________________________________
textmate-dev mailing list
textmate-dev&amp;lt; at &amp;gt;lists.macromates.com
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Hans-Jörg Bibiko</dc:creator>
    <dc:date>2012-01-12T16:17:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14637">
    <title>[SVN] r12068 (R)</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14637</link>
    <description>&lt;pre&gt;• added support for TM shell variable TM_REXEC {"R64" or "R32"} to be able to run R in 64 or 32 bit mode explicitly. [Thanks to Bernd Hasselman]
• added TM2 grammar snippet in order to be able to get indention after pressing ↩ after a {. [Thanks to Jon Claydon]

Changed:
U   trunk/Bundles/R.tmbundle/Support/lib/help.markdown
U   trunk/Bundles/R.tmbundle/Support/tmR.rb
U   trunk/Bundles/R.tmbundle/Syntaxes/R.plist
_______________________________________________
textmate-dev mailing list
textmate-dev&amp;lt; at &amp;gt;lists.macromates.com
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Hans-Jörg Bibiko</dc:creator>
    <dc:date>2012-01-12T14:27:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14636">
    <title>[SVN] TM2 Bundle Template</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14636</link>
    <description>&lt;pre&gt;Hi,

Which TM2 bundle would you recommend as a good guide/template to use when updating TM1 bundles so they work better with TM2.

Especially with the Soft Wrap and Indentation changes.

Thanks.

Regards
Matthew Winter
&lt;/pre&gt;</description>
    <dc:creator>Matthew Winter</dc:creator>
    <dc:date>2012-01-06T09:09:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14636">
    <title>[SVN] TM2 Bundle Template</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14636</link>
    <description>&lt;pre&gt;Hi,

Which TM2 bundle would you recommend as a good guide/template to use when updating TM1 bundles so they work better with TM2.

Especially with the Soft Wrap and Indentation changes.

Thanks.

Regards
Matthew Winter
&lt;/pre&gt;</description>
    <dc:creator>Matthew Winter</dc:creator>
    <dc:date>2012-01-06T09:09:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14636">
    <title>[SVN] TM2 Bundle Template</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14636</link>
    <description>&lt;pre&gt;Hi,

Which TM2 bundle would you recommend as a good guide/template to use when updating TM1 bundles so they work better with TM2.

Especially with the Soft Wrap and Indentation changes.

Thanks.

Regards
Matthew Winter
&lt;/pre&gt;</description>
    <dc:creator>Matthew Winter</dc:creator>
    <dc:date>2012-01-06T09:09:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14632">
    <title>[SVN] Lua.tmbundle fixes and improvements (stderr formatting script)</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14632</link>
    <description>&lt;pre&gt;Dear Michael, Dear TM Developers,

I hope I am writing to the right address (I am also copying that into textmate-dev list in case Allan or someone else is packaging this bundle for TM2). I have made few improvements (working on TM2 alpha here) to Lua.tmbundle. I am publishing these as GitHub repo here:

https://github.com/nanoant/Lua.tmbundle.mod

This is not Lua.tmbundle fork, but textual mods only (reason explained in the repo README). Please see changelog of this repo for details. Changes are split into "atomic" commits so it should be convenient to apply them back to original bundle.

Changes:
• formatting error (stderr) output of Lua interpreter
• fix folding for anonymous functions and use then, do, repeat keywords that are present just before block start
• fix grammar for anonymous functions and missing not operator
• fix grammar for function calls
• add syntax highlight for non built-in function calls and table fields
• add syntax highlight for LuaJIT FFI cdef blocks

I hope you (and oth&lt;/pre&gt;</description>
    <dc:creator>Adam Strzelecki</dc:creator>
    <dc:date>2011-12-30T13:27:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14631">
    <title>[SVN] C based grammars broken for embedding (restricting $basereference)</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14631</link>
    <description>&lt;pre&gt;Hello TM developers,

I've just realized that posting to general TM list about this grammar problems wasn't wise idea to I've let myself to report to dev list here.

Since C grammar is intended to be the base for other grammars such as C++ or Obj-C it uses `include = '$base'` instead of `include = '$self'` for all recursive sub-block parsing to point back to original grammar (if possible). This works perfectly well for standalone C or C++ file, however when trying to embed C source into other language we get a problem, i.e. for Ruby grammar:

#!/usr/bin/env ruby
# trying to embed something into Ruby (using TM2 grammar)
variable = &amp;lt;&amp;lt;-C
/* we are parsed by C grammar here */
enum {
 /* ooops this comment isn't parsed anymore by C grammar but Ruby again! */
}
C

Problem is on '{' which starts new C block, that does `include = '$base'`. Unfortunately $base is Ruby here not C. Same if we change C into CPP in the example above, $base is still Ruby.

I can see two solutions here:
(1) caller should be able to block/c&lt;/pre&gt;</description>
    <dc:creator>Adam Strzelecki</dc:creator>
    <dc:date>2011-12-30T12:58:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14629">
    <title>[SVN] paste online broken?</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14629</link>
    <description>&lt;pre&gt;

_______________________________________________
textmate-dev mailing list
textmate-dev-qhrM8SXbD5LrQoZeqNtYVVaTQe2KTcn/&amp;lt; at &amp;gt;public.gmane.org
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Timothy Bates</dc:creator>
    <dc:date>2011-12-19T13:52:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14626">
    <title>[SVN] Strip HTML tags also Strips embedded ruby tags</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14626</link>
    <description>&lt;pre&gt;New to Textmate

I just gave the Strip HTML tags command a try.

I develop Ruby on Rails,  so I also have embedded ruby

The command also stripped out the embedded Ruby.  I want to keep the embedded Ruby and just strip the HTML.

When I go into the command editor, I see that the command is acheived via php

&lt;/pre&gt;</description>
    <dc:creator>Brad Hodges</dc:creator>
    <dc:date>2011-12-17T20:03:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14623">
    <title>[SVN] [TextMate 2] What happened to TM_BUNDLE_PATH ?</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14623</link>
    <description>&lt;pre&gt;Hi everyone,
this is my first post :)
First of all, let me say thank you for this fantastic editor and to all the developers for all the effort spent to improve the bundles.
I'm trying to port this fantastic Common Lisp bundle from TM1 to TM2: I've partially succeded, but I'm having trouble dealing with some dynamic variable:
for examples, what happened to TM_BUNDLE_PATH? If I try to evaluate it, I can't get everything.
Has it been removed from TM2?
Any idea or alternatives to get the bundle absolute path?

Thanks in advance,
Alfredo Di Napoli

_________________________________

Alfredo Di Napoli
http://www.alfredodinapoli.com/

_________________________________



_______________________________________________
textmate-dev mailing list
textmate-dev-qhrM8SXbD5LrQoZeqNtYVVaTQe2KTcn/&amp;lt; at &amp;gt;public.gmane.org
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Alfredo Di Napoli</dc:creator>
    <dc:date>2011-12-17T13:44:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.editors.textmate.devel/14621">
    <title>[SVN] Compatibility with 1.5 Bundles</title>
    <link>http://comments.gmane.org/gmane.editors.textmate.devel/14621</link>
    <description>&lt;pre&gt;Took a look at the alpha and had
couple of questions:

1) It does not pick up the existing bundles, does it look in a different
location that ~/Library/Application Support/Textmate ?
2) Does it support the 1.5 bundles?
3) User question: How do I move the drawer to the right like I can in 1.5?
I tried hiding
it and then moving the window so there is no space on the left and
re-opening the browser but it always appears on the left.
_______________________________________________
textmate-dev mailing list
textmate-dev-qhrM8SXbD5LrQoZeqNtYVVaTQe2KTcn/&amp;lt; at &amp;gt;public.gmane.org
http://lists.macromates.com/listinfo/textmate-dev&lt;/pre&gt;</description>
    <dc:creator>Dylan Barrell</dc:creator>
    <dc:date>2011-12-13T18:31:39</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.editors.textmate.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.editors.textmate.devel</link>
  </textinput>
</rdf:RDF>

