Hello,
I try to use the Blogging-Bundle. I setup an account:
# Blog Name URL
Just a blog http://xxxxUSERxxx.wordpress.com/
When I try to fetch post I get this error message:
Error: Invalid Endpoint specified: http://xxxxUSERxxx.wordpress.com/
What is the problem? I am using 1.5.5
Hi All,
I'm a fairly new TextMate user, and have a few things I miss from
previous editors. I'll just mention two:
1) Is there a way to see the size of the current selection on the
status bar at the bottom of the screen?
i.e. If I have 10 lines selected to show...
Line: 42 Column: 24 Selection: 10
I often edit data files where I want to (say) remove the last 100
lines, and that isn't easy to do.
2) Why does the column edit mode select an extra line at the end?
Say I've selected a block of five lines:
1
2
3
4
5
If I press the option key to get the first column, and then type
something, it also has a selection on the line after 5.
That is, you get:
//1
//2
//3
//4
//5
//
That always messes me up a bit.
I'm enjoying my new life in TextMate, and thanks for any suggestions.
-Craig Schmidt
Hi the list,
While trying to use the "Latex template" command, I received the
following error:
/tmp/temp_textmate.xPSxGN:14: undefined method `exit_tool_tip' for
TextMate:Module (NoMethodError)
I am using the (obviously latest) cutting-edge version of Text-Mate,
and neither the Latex bundle nor any plugin have been manually
modified or updated.
Thanks in advance,
Xavier Cambar
I am a new Textmate user so I'm still figuring out how things work.
Is it really not possible to have multi-keystroke key equivalents for
bundle items? With so many items available I think this would make it
a lot easier to have mnemonic shortcuts that way. Sure, I can (I
think, haven't actually tried it) fake this by messing with Textmates
KeyBindings.dict, but that doesn't feel right.
--
Sven Axelsson
I found a discussion regarding adding support for the Verilog
language dating back to 2005 on this list. Has anyone made any
progress on adding a language bundle for Verilog since then?
Thanks,
HM
Hi all,
I've written a command that performs an AppleScript to look up the
selected text in a FileMaker database. I have the command Output set to
"Replace Selected Text". It's all working well, except that the result
that's replacing my selection is always being followed by a newline--which
is definitely not being added by my AppleScript or FileMaker.
Any ideas on how to get rid of the added newline?
--
Tim Mansour <tim(a)neologica.com.au>
The current method the command Quick Open of the C bundle does use
is look for the file in several funny directories that not always are
then same c/c++ are looking into.
Is not easy to know where the cpp preprocessor look for the included
files. The only method I have found is from Andrew Tomazos and is a
small Perl script that makes c++ have mistakes and then shows us the
real places where it is looking into.
Running it once is enough, I think, and then pick up the directories
for a script to quick opening included files.
I would like to know who is the C bundle maintainer for to share this
things with him.
I also find a bit complicated the current way of making changes (yet
small changes) and then you will be out of updates of the official
bundle since yours will be always loaded before the official one.
Tx.
#!/usr/bin/env perl
$line=$ENV{'TM_CURRENT_LINE'};
$header=$ENV{'TM_SELECTED_TEXT'};
if (!$header) {
$line =~ /#\s*include\s*([<"])(.*?)[">]/;
$local = $1;
$header = $2;
}
if ($local eq '"') {
$t = $ENV{'TM_DIRECTORY'};
if (-f "$t/$header" ) {
print "$t/$header";
system("mate -r \"$t/$header\"");
exit 0;
}
}
@incs = qw(
/usr/include/c++/4.0.0
/usr/include/c++/4.0.0/powerpc-apple-darwin8
/usr/include/c++/4.0.0/backward
/usr/local/include
/usr/lib/gcc/powerpc-apple-darwin8/4.0.1/include
/usr/include
/System/Library/Frameworks
/Library/Frameworks
);
foreach $t (@incs) {
if (-f "$t/$header") {
print "$t/$header";
system("mate -r \"$t/$header\"");
exit 0;
}
}
print "";
exit 1;
I wrote:
> Oops. I got caught submitting a change without testing it. I don't
> seem capable of never repeating that mistake--that's where automated
> tests come in handy.
Is there any facility for creating automated tests for language grammar rules?
It would be useful to be able to define tests within rules or patterns such as:
test_matches = " _italic_ ";
test_no_matches = "snake_case_word";
...or perhaps...
test_matches = { " _italic_ " = 1; "snake_case_word" = 0; "
_italic_number_1_ _italic_number_2 " = 2; };
And then be able to run tests for a specific bundle (say from within
the bundle editor) like one would unit tests, and see if they're green
or if there's a problem.
Would it be possible to write a BundleTester bundle? I guess one
would just need to parse the indicated bundle's language property list
and run any tests found using Oniguruma. Would these test properties
be otherwise ignored?
--
Daryl
On 4/18/07, Daryl Spitzer <daryl.spitzer(a)gmail.com> wrote:
> > I got around to apply it, thanks.
>
> Thank you.
>
> > > While I was in there, I made the same change to the
> > > 'markup.bold.twiki' match.
> >
> > This won't work, since * is not a word character, so \b will actually
> > have the opposite effect, i.e. making foo*bar*fud match the inner
> > word as bold.
>
> Oops. I got caught submitting a change without testing it. I don't
> seem capable of never repeating that mistake--that's where automated
> tests come in handy. (Which leads me to a question which I will post
> separately.)
>
> > Instead it should probably be (?<!\w) and (?!\w) before/after the
> > match. I didn't make this change though.
>
> I think you made the right call. Unlike snake_case_words, I have yet
> to run across a real-world need for asterisks embedded within words.
> We should wait to "fix" it until it is proven to be a problem.
>
> --
> Daryl
>
>
> On 4/13/07, Allan Odgaard <throw-away-1(a)macromates.com> wrote:
> > On 5. Apr 2007, at 22:09, Daryl Spitzer wrote:
> >
> > > It is a bug that words surround by underscores in snake_case_words
> > > in a TextMate Twiki document are italicized. (In this example, the
> > > word "case" is italicized.) When displayed in TWiki, those words
> > > are not italicized.
> > >
> > > I made a small change to the Twiki language (in the Twiki bundle)
> > > to correct this--see the 'markup.italic.twiki' match in the
> > > attached patch.
> >
> > I got around to apply it, thanks.
> >
> > > While I was in there, I made the same change to the
> > > 'markup.bold.twiki' match.
> >
> > This won't work, since * is not a word character, so \b will actually
> > have the opposite effect, i.e. making foo*bar*fud match the inner
> > word as bold.
> >
> > Instead it should probably be (?<!\w) and (?!\w) before/after the
> > match. I didn't make this change though.
> >
> >
> >
> >
> > ______________________________________________________________________
> > For new threads USE THIS: textmate(a)lists.macromates.com
> > (threading gets destroyed and the universe will collapse if you don't)
> > http://lists.macromates.com/mailman/listinfo/textmate
> >
>
I don't know if this is a problem with TextMate or a "feature" of OSX, but
I have a problem with the "Save As..." dialog. I want to be able to type
a full path into the Save As: filename box. So if I want to save the file
as "foo.txt" in the "/tmp" directory, I just want to type "/tmp/foo.txt"
rather than mousing around the dialog to navigate to the "/tmp" directory,
then entering the name "foo.txt".
(And, as luck would have it, MacOS "helpfully" hides the "/tmp" directory
from that dialog, so I can't even navigate there! But that's beside
the point; I could fix that with a symlink.)
As it is, if I type "/tmp/foo.txt" into the dialog I get a file in my home
directory named ":tmp:foo.txt". The translation of slashes to colons
makes me think this is probably a mis-feature of OSX rather than TextMate,
but even so, is there a way around it?
--
Steve King, <steve(a)narbat.com>