I'm fairly new to mailing lists and was wondering what the standard is
for forming replies. I generally try to follow the reply direction that
the current thread is following but was wondering if there was a standard.
Do I form a reply at the bottom or the top?
also.
Do I include the immediate parent thing I'm replying to or the whole
history?
I knew this once, but can't find it now and it's driving me nuts. When I create a new bundle item it goes into "Steve King's Bundle" by default. I want to change which is the default bundle. What's the magic?
--
Steve King
Sr. Software Engineer
Arbor Networks
+1 734 821 1461
www.arbornetworks.com
I am running Textmate on Snow Leopard. I've got the Ruby on Rails bundle in
my ~/Library/Application Support/Textmate/Bundles directory. However,
Textmate does not seem to see it? Any ideas...thanks in advance
--
View this message in context: http://old.nabble.com/Problem-installing-Ruby-on-Rails-bundle-tp26780280p26…
Sent from the textmate users mailing list archive at Nabble.com.
I fired up Firefox (the command-line version, so I could specify -jssh and use watir) and found
the following complaint.
firefox-bin[1614:903] Can't open input server /Users/bryanloc/Library/InputManagers/Edit in TextMate
Looking in my console log, I find scads of messages to this effect.
Can anyone tell me how to fix this problem?
Thanks.
Bryan
In my project sometimes i get some emty lines with tabs or tabs, spaces after text
For example:
> for ($i=0; $i < ; $i++)
> {
>
> // ↑line with tab(s)
> //this is a line with space at the end
> }
So i made the regexp: (^[\t| ]+[\n]|[\t| ]+$)
Strange result is that it works when ⌘-f
But when pressing ⌘⇧-f it doesn't search (or won't find anything)
Am i doing something wrong?
Regards Jasper
Alex Ross, thanks for all the hard work you've put into the latex2 bundle.
I have a request that maybe you can help with. There is a command in the latex bundle 'toggle starred' which adds or removes a star from sectioning commands:
/section{}
/section*{}
This works, but when executed it unfolds all of my folded blocks, and leaves the screen such a state that I completely lose where I was. Is this something that can be fixed?
Thanks.
>Is there a bundle for Google's programming language "Go" ? I only found one
>online http://gitorious.org/go-tmbundle , and it was an empty repo.
I put this one together. Let me know what you think....
Carl Forde
However beautiful the strategy, you should occasionally look at the results.
-- Winston Churchill
> Message: 7
> Date: Sun, 13 Dec 2009 18:30:08 +0100
> From: Allan Odgaard <mailinglist(a)textmate.org>
> Subject: [TxMt] Re: Unwanted newline php
> To: TextMate users <textmate(a)lists.macromates.com>
> Message-ID: <30CEA0C1-8185-4A7B-843F-CE02B65D4FA9(a)textmate.org>
> Content-Type: text/plain; charset=utf-8; format=flowed
>
> On 11 Dec 2009, at 8:41, Ryan Fitzer wrote:
>
>> $fstat = fstat(STDIN);
>> $stdin = fread(STDIN, $fstat['size']);
>
> I am surprised this works. STDIN is a pipe and can?t be stat?ed for
> file size.
>
> I would suggest instead using file_get_contents("php://stdin").
One of the reasons decided to use the fstat method as it was the only
documentation I could find on the STDIN subject that I could make
sense of (new to this). This post was my source.:
http://muffinresearch.co.uk/archives/2007/03/19/using-php-cli-for-textmate-….
Also, php.net's explanation offered the following, further making up my mind:
"php://stdin, php://stdout and php://stderr allow direct access to the
corresponding input or output stream of the PHP process. The stream
references a duplicate file descriptor, so if you open php://stdin and
later close it, you close only your copy of the descriptor--the actual
stream referenced by STDIN is unaffected. Note that PHP exhibited
buggy behavior in this regard until PHP 5.2.1. It is recommended that
you simply use the constants STDIN, STDOUT and STDERR instead of
manually opening streams using these wrappers."
source: http://php.net/manual/en/wrappers.php.php
I just plugged your recommendation in and it works fine. Thanks for the tip.
Ryan
--
Ryan Fitzer
Los Angeles, CA
http://www.ryanfitzer.comhttp://www.ryanpatrickfitzer.comhttp://www.portfoliorodeo.com
Normally on textmate I write something like this:
if($data)
{
if($var == 'two')
{
echo 'hello';
}
// I hit enter here
//Goes here...
// insted of here
}
The issue is that normally when I hit enter it would stay flush on the next
line where it would normally go. I noticed that after I installed Snow
Leopard I run into an issue where it no longer stays flushed, instead it
goes to the very beginning, and i have to hit "tab" in order to return to
the original location i wanted.
I have Snow Leopard at home and at work, same programs. This just happened
after I reformatted my comp at work, and it's a new install of Snow Leopard,
with new install of PHP I haven't added any bundles, etc...
Anyone have any ideas what might be the issue?
I'm writing a command using php that reorders a css property list by
string length. The problem I'm having is that a newline character is
being added at the beginning of the result for some reason (using
Replace selected text). I've consulted this thread
http://lists.macromates.com/textmate/2007-April/019068.html but I've
found no way of echoing a string without the newline being added. Here
is the command:
#!/usr/bin/php
<?php
$fstat = fstat(STDIN);
$stdin = fread(STDIN, $fstat['size']);
//print_r($stdin);
$pattern = '/\{(.*)\}/Us';
preg_match($pattern, $stdin, $matches);
$output = trim($matches[1], "\n");
$output = preg_split('/\n/', $output);
function sort_strlength($val_1, $val_2) {
// initialize the return value to zero
$retVal = 0;
// compare lengths
$firstVal = strlen($val_1);
$secondVal = strlen($val_2);
if($firstVal > $secondVal) {
$retVal = 1;
} else if($firstVal < $secondVal) {
$retVal = -1;
}
return $retVal;
}
uasort($output, "sort_strlength");
$out = '{' . "\n";
foreach($output as $line) {
$out .= $line . "\n";
}
$out .= '}';
print(trim($out));
?>
Any help would be appreciated.
Ryan
--
Ryan Fitzer
Los Angeles, CA
http://www.ryanfitzer.comhttp://www.portfoliorodeo.com
Hi,
what do I have to do if I want to convert from
array.each { |e| puts e }
to
array.each do |e|
puts e
end
I found the command toggle 'do ... end' / '{ ... }' but I don't know
exactly how to use it. Where has the cursor to be positioned? Do I have
to select any text?
The shortcut ^{ won't work because I have a German keyboard. But even if
I choose the command from the menue nothing happens.
thanks,
Martin
After some time I tried again to blog from textmate on wordpress.
One question, I get all the '"' translated to " also if I'm in
[source] code block.
That is a problem because in the wordpress page those areas don't get
interpreted, and if I change them they will go back to " next time
I post it.
Any solution for this problem?
Hi,
just encountered a tiny inconsistency in:
"$DIALOG" menu --items '({title = foo;}, {separator = 1;}, {header=1; title = bar;}, {title = baz;})'
It shows instead the keyboard shortcuts 1 and 2 the "old" keyboard shortcuts ⌘1 and ⌘2.
This should be fixable easily by:
in Commands/menu.mm ⇢ uncomment line 69.
Cheers,
--Hans
Ever since upgrading to snow leopard scrolling via page up/down is broken. The current line does not move in sync with the viewable area. It jumps down what appears to be a random amount and sometimes even jumps back up when pushing page down.
Am I the only one experiencing this? I can produce a screen cast if necessary to demonstrate the behavior.
Thanks,
Rick
Hi,
I've discovered a little bug where new class creation from ³New From
Template² doesn¹t work if any of the path in the file system leading down to
your project directory contains a space.
So the path to my project is /Users/sam/Documents/Current Work/ProjectName/
Current Work in the path is apparently not escaped properly, as the ³New
>From Template² does work in ~. I looked at template_machine.rb, but I don¹t
know ruby so I¹m struggling to find the right bit/command to use to escape.
Thanks
--
Sam Thorne
UI Design Group
Sony Design Centre Europe
The Heights, Brooklands,
Weybridge, Surrey
KT13 0XW
Tel: +44 (0)1932 816263
************************************************************************
The information contained in this message or any of its attachments may be confidential and is intended for the exclusive use of the addressee(s). Any disclosure, reproduction, distribution or other dissemination or use of this communication is strictly prohibited without the express permission of the sender. The views expressed in this email are those of the individual and not necessarily those of Sony or Sony affiliated companies. Sony email is for business use only.
This email and any response may be monitored by Sony to be in compliance with Sony's global policies and standards
When I use the TODO bundle I want it to scan the entire project, but it defaults to scanning the file selected in the. project drawer.
That leads to this annoying workflow:
- Call up TODO list
- Scratch head why it's empty
- Remember
- Curse
- Finde selected file in project drawer and deselect
- Call up TODO list
How can I get the TODO bundle to always scan the entire project?
Thanks
Gerd
Hi,
The ActionScript bundle provides a nice theme.
The ActionScript 3 bundle [1] has the autocomplete I want, but no color
syntax.
How can I tell the AS3 bundle to use the color syntax that the AS bundle
provides?
[1] http://svn.textmate.org/trunk/Review/Bundles/ActionScript%203.tmbundle
Any hints or tips is highly appreciated! :)
--
Martin Stabenfeldt
On 08/12/2009, at 11:00 PM, Rick DeNatale wrote:
> Well, I got WriteRoom for free in the last MacHeist bundle. So unless
> someone is paying you to use Ommwriter. <G>
Did you actually have a look at the Ommwriter website? http://www.ommwriter.com/. It's in beta, and free.
On 7 Dec 2009, at 15:08, Rick DeNatale wrote:
> This reminds me of WriteRoom
> http://www.hogbaysoftware.com/products/writeroom
>
> Only with more toys to distract you.
I was sceptical too, but I downloaded the app to give it a go. Sure it seems to be full of "toys", but IMHO the stroke of genius is in the ambient background music. Once I got started with an Ommwriter session I was engrossed within 5 minutes, no distractions. The music combined with the serene background image really does help you focus (and I mean really---try me).
Adam Sharp
Hi,
how could I do this?
Would like to:
unsubscribe: maillists(a)gmx.de
subscribe: trinix+maillist(a)gmail.com
Not working: http://macromates.com/community
Best
--
Christian
-Bill Gates is a very rich man today ... and do you want to know why? The answer is one word: versions.-
Dave Barry
I'm seeing the following in my system console messages when I bring up TextMate:
08.12.09 17:04:23 TextMate[1390] Can't open input server /Users/bryanloc/Library/InputManagers/Edit in TextMate
However, I see the complaint occurring in other programs, like this:
08.12.09 16:57:48 UnmountAssistantAgent[1357] Can't open input server /Users/bryanloc/Library/InputManagers/Edit in TextMate
Can anyone tell me exactly what this means and how I can fix it?
Thanks in advance,
Bryan
I'm working on a command to reflow perl/shell style # comments and running into a problem with scopes.
When I do a 'select scope' with the mouse on a comment, it correctly selects the surrounding lines beginning with #. However, if I set up a simple 'cat' command (seen here: http://grab.by/WGt) with the input set to "Selected Text or Scope" and the output set to tooltip, the tooltip is displaying the entire contents of the file (seen here: http://grab.by/WHB)
I'm running Version 1.5.8 (1509) on 10.6.2. What am I missing? Thanks!
Matt
Hi
I'm not an expert with Ruby so I need to know if the next command is safe
I want to select a "number" and to get $\numprint{number}$ if number is not empty
and number is not inside a math environment
or
\numprint{number} if number is inside a math environment.
then
if number is empty, I want to get \numprint{...} or $\numprint{...}$
I made this and I would like to know if this code is correct
#!/usr/bin/ruby
# Created by Alain Matthes on 2009-11-15 (www.altermundus.com).
require ENV["TM_SUPPORT_PATH"] + "/lib/exit_codes.rb"
if ENV['TM_SELECTED_TEXT'].nil?
input = ENV['']
else
input = ENV['TM_SELECTED_TEXT']
end
if ENV['TM_SCOPE'].match(/math.((.*)|(la))tex/)
$math_del = ""
else
$math_del = "\\$"
end
TextMate.exit_insert_snippet("#{$math_del}\\numprint{#{input}$0}#{$math_del}")
Is it possible to use a shortcut to go out of the first environment {...} and then to go out
of the math environment because the caret is inside {number} ?
Best regards
Alain Matthes