Is it possible to turn on tab guides in TextMate? Please see the attached image for what I am trying to accomplish (this is from BBEdit).
Thanks. http://www.nabble.com/file/p20774504/Picture%2B6.png
Gotta try and bump this. Never heard anything back. Thought I would try one more time Thanks.
On Dec 1, 2008, at 3:16 PM, ldww wrote:
Is it possible to turn on tab guides in TextMate? Please see the attached image for what I am trying to accomplish (this is from BBEdit).
Thanks. http://www.nabble.com/file/p20774504/Picture%2B6.png
-- View this message in context: http://www.nabble.com/Tab-guides---lines-tp20774504p20774504.html Sent from the textmate users mailing list archive at Nabble.com.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On 8 Dec 2008, at 21:21, Louis Walch wrote:
Gotta try and bump this. Never heard anything back. Thought I would try one more time
No, that is not possible.
On Dec 1, 2008, at 3:16 PM, ldww wrote:
Is it possible to turn on tab guides in TextMate? Please see the attached image for what I am trying to accomplish (this is from BBEdit).
Thanks. http://www.nabble.com/file/p20774504/Picture%2B6.png
-- View this message in context: http://www.nabble.com/Tab-guides---lines-tp20774504p20774504.html Sent from the textmate users mailing list archive at Nabble.com.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On Dec 9, 2008, at 6:03 PM, Allan Odgaard wrote:
On 8 Dec 2008, at 21:21, Louis Walch wrote:
Gotta try and bump this. Never heard anything back. Thought I would try one more time
No, that is not possible.
Actually, with some surgery in the language syntax and the display style it is and I have been using it for years:
Gerd
Not exactly the same, but might work. How did you do this Gerd?
On Dec 10, 2008, at 9:44 AM, Gerd Knops wrote:
On Dec 9, 2008, at 6:03 PM, Allan Odgaard wrote:
On 8 Dec 2008, at 21:21, Louis Walch wrote:
Gotta try and bump this. Never heard anything back. Thought I would try one more time
No, that is not possible.
Actually, with some surgery in the language syntax and the display style it is and I have been using it for years:
<Picture 1.png>
Gerd
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On Dec 10, 2008, at 12:22 PM, Louis Walch wrote:
Not exactly the same, but might work. How did you do this Gerd?
Well, it's sort of ugly, because you basically have to wrap your own language definition around all languages to support this, and then use that language. That wrapper defines 'meta.odd-tab' and 'meta.even- tab'. Then it is just a matter of setting the background color for these in the style.
An example for Objective-C is attached below.
Gerd
{ scopeName = 'source.objc.gerd'; fileTypes = ( 'm', 'h' ); foldingStartMarker = '(?x) /**(?!*) |^(?![^{]*?//|[^{]*?/*(?!.*?*/.*?{)).*?{\s*($|//|/*(?!.*?*/.* \S)) '; foldingStopMarker = '(?<!*)**/|^\s*}|^@end\b'; patterns = ( { name = 'meta.leading-tabs'; begin = '^(?=(\t| {4}))'; end = '(?=[^\t\s])'; patterns = ( { match = '(\t| {4})(\t| {4})?'; captures = { 1 = { name = 'meta.odd-tab'; }; 2 = { name = 'meta.even-tab'; }; }; }, ); }, { include = 'source.objc'; }, ); }
ldww wrote:
Is it possible to turn on tab guides in TextMate? Please see the attached image for what I am trying to accomplish (this is from BBEdit).
Thanks. http://www.nabble.com/file/p20774504/Picture%2B6.png
View -> show invisibles is not enough?