feature request:
redo last action
redoes the last snippet, macro or command that you just did.
I have a lot of commands and snippets and things that i only use once
every so often. So I don't give them a tab completion or shortcut.
Many of them I would like to use multiple times in a row.
Currently, i could record a temporary macro, run the command and then
rerun the temp macro.
But I never remember to do that.
It would be way handier to have this extra function, too.
Thankyou, and goodnight everybody!
I'm trying to disable auto-indentation for the lines below starting
with 'case'. This is how I'd like the code to appear:
switch ($where) {
case 'start' :
# code...
break;
default :
case 'middle' :
# code...
break;
case 'end' :
# code...
break;
}
However, by default, the php bundle wants to format it like this:
switch ($where) {
case 'start' :
# code...
break;
default :
case 'middle' :
# code...
break;
case 'end' :
# code...
break;
}
I've added this preference item to the php bundle for source.php, but
it's not working:
/* preferences */
{
unIndentedLinePattern = '^\s*case\s+.*$';
}
Am I doing this right?
Thanks,
Q
Hi everybody,
I am a 25 year old bioinformatics student and passionate rails developer
from germany. However, for my upcoming diploma thesis OCaml will be my
programming language of choice. Of course I would like to be able to stick
with Textmate and code OCaml in Textmate but unfortunately there is no
integrated default syntax highlighting for OCaml and I could find only one
bundle for OCaml. The bundle is listed on the old wiki page
http://wiki.macromates.com/textmate/show/Bundles102.html ,but unfortunately
its link http://ianp.org/articles/textmate/OCaml.tmbundle.zip is broken.
Does anybody know where I can download this package or maybe point me to
another OCaml bundle with syntax highlighting?
THX and sorry for my bad english,
Andreas
After running Tidy on documents with a doctype of
XHTML 1.0 Transitional
The doctype definition is replace with the "Strict" version.
I did a little digging and there is a -doctype switch in Tidy, but
setting it to
--doctype -transitional
in the Tidy bundle has no effect... Transitional is still changed to
Strict.
Any ideas how to fix this?
eo
Hello all,
As you may have noticed, the cycle of TextMate betas has slowed down
recently. When talking to Allan yesterday, I asked him about the
progress of reworking TextMate's innards. He confided me that during the
recent months MacroMates has been cooperating with TheCodingMonkeys
working hard to exchange experiences and to merge their editors.
Later today a new beta of SubEthaMate will be released, as a combined
effort between TheCodingMonkeys and MacroMates. This new beta will
feature preliminary support for both of SubEthaEdit and TextMate
strongpoints, collaboration features, access to the Unix shell, and
remote editing over (S)FTP.
The beta will of course be very rough around the edges, and it will
require extensive testing and feedback to get all this right. Allan told
me that the new beta will be released only to the TextMate community
later today. The public announcement will follow when SubEthaMate is
more stable.
To be certain, I contacted one of TheCodingMonkeys, Martin Pittenauer.
He confirmed that they are working with Allan to create a stronger
editor. "TextMate and SubEthaEdit both have the same philosophy, selling
their editor at a low price and placing high value on usability. It is
time we combined our effort and knock BareBones off their throne.", he
commented.
He also told me that they are waiting for SubEthaMate to become
reasonably stable, before releasing it to their community.
I can't wait to get my hands on the new beta!
Jeroen.
Hey folks,
To the maintainer of the Java language bundle, I just pulled the
latest from svn. I didn't realize if the Java.tmbundle was update,
but there are (IMHO) some bugs in the language grammar that I'm
running accross that I don't think I've seen before but it's possible
I just wasn't looking:
FIRST:
When the cursor is immediately outside of a block comment, the scope
still shows "comment.documentation.java" or "comment.block.java" when
I don't think it should be (imagine the ^ character to be the cursor):
Example:
/* some comment here */^
-- or --
/**
* My method does this
*/^
the scope on the outside of the closed comment is being recognized as
comment.block.java and comment.documentation.java respectively when
really I'm out of the comment blocks.
SECOND:
All the code after an abstract method is scoped to
meta.definition.method.java, like for Example:
public abstract void doSomething();
// all code in the file below this is scoped to the
meta.definition.method.java
if I add a {} at the end of the abstract method signature the scope
gets fixed -- but, y'know ... then the compiler complains :-)
Thanks,
-steve