There has been some talk in the past about TextMate's undesired
tendency to use a software generated bold for the Bitstream Vera Sans
Mono font.
One fix seems to be to run:
sudo rm -rf /Library/Caches/com.apple.ATS
Afterwards one will have to reboot the machine, but then the bold
shows up as drawn. And what a difference it makes:
Though I don't know for how long this fix will work. And it will
still look incorrect when the bold text is light on a dark background.
Hi All,
I'm evaluating TextMate and find it very useful, but I can't get it
to remember the [BBEdit] Theme that I have downloaded.
1: Does the non-licensed version not remember importet Themes?
2: Is something else wrong?
Here's how I do it:
- Doubble-click the Theme file in the Finder -> opens it in TextMate
and activates it..
- Quit TM = It's gone from the Theme selector in Prefs, but still in
my AppSupport folder...
Hints?
Jakob Peterhänsel
"Tell me why, don't we try, not to break our hearts
and make it so hard for our selfs"
P.S.B. 1987
Email: jakob(a)hjemme.dk
AIM: Marook
Phone: +45 22684961
Hi,
I'm working on a grammar for Io (www.iolanguage.com) and I've got a
basic one working. I notice that in the other languages I've looked
at, typing a "{" , getting the auto-paired "}" , and hitting return
with the cursor in the middle, gets you a new line and the
indentation decreased. Like so:
before:
if(true) {}
hit return:
if(true) {
}
Now, in Io, matching parens serve as block delimiters (effectively
anyway). So you could have this statement:
if(true) then (
// do something
)
So, I'd like to have the same behavior for parens as one gets for
braces, but I can't seem to locate where this is enacted. As far as
I can tell, there is no key in the grammar or language preferences to
auto-expand this sequence, but I'm new to all this.
Does anyone know if this is part of the language definition system
that I can control?
Thanks in advance,
John
John Clayton
---------------------------------------------------------------------
http://www.fivesquaresoftware.com
john(a)fivesquaresoftware.com
---------------------------------------------------------------------
CatSlapper - Manage and install multiple Tomcats
When searching in the "go to symbol" pop-up, I find that because the
search alphabetizes the results, it's very much the opposite of useful.
In my screenwriting bundle it's possible to have over 20 matches for
the same symbol-search-string, if I can't see those results in the
order they are in in the document, the search is useless. Wouldn't
this be a problem in other languages as well?
There is a "Keep Symbols Alphabetized" option in the pop-up at the
bottom of the window, why not the search pop-up? Am I missing a
preference somewhere?
hello:)
I can't delete a space with the key "delete" or with the key <- also.
I need to delete the file preference of textmate
i would like to know if i made a bad thing and if can modify the bad
prefs
finally which can be the origin of this problem?
Greetings Alain Matthes
In the bundle I've created I'm attempting to refine my scopes. Take
the following example:
INT. SHIPYARD DOCKS - DAY
The above line falls under the scopes "text.splay.screenplay" (the
document) and "splay.slugline" (the element). What I want is to be
able to define the three separate elements: "INT", "SHIPYARD DOCKS",
"DAY" as independent scopes, while retaining their status as
"splay.slugline" So "INT" would fall under the jurisdiction of
"text.splay.screenplay splay.slugline splay.slugline.setting".
I guess the simple question is: how do you stack more than two (the
document and the element) scopes?
In Markdown a link gets text.html.markdown,
markup.paragraph.markdown, markup.underline.link.markdown... how do I
do that?
I recorded a macro to search forwards and backwards for
(?=(?:private|public)( static)? ), which is working nicely for
ActionScript, but it'd be interesting to see it tied into the language
grammers somehow. Any thoughts?
Ben
___________________
Ben Jackson
Diretor de Desenvolvimento
ben(a)incomumdesign.com
http://www.incomumdesign.com
This has been such a fun project. Couldn't keep myself away:
http://blog.inquirylabs.com/2006/02/19/syncpeople-on-rails-07/
== Summary ==
Easily navigate between ActionMailer models, views, partials,
controllers, helpers, javascripts and stylesheets with a single key
(keypad 'enter') in TextMate. This release also adds an Enhanced
TODO List (ctrl-shift-t) and is now officially LGPL licensed.
Duane Johnson
(canadaduane)
http://blog.inquirylabs.com/
Not sure what you need to debug this, but all of a sudden indentation
has stopped working in the php bundle. I've tried trashing the pref
files, my bundles and themes, and even trashing txmate itself, and
nothing is bringing it back.
Any Suggestions?
Eric Coleman
I'm stumped again. I got > comments working for plain text documents
using this method, but now I want to set // type comments for all php
source. I've tried adding the following preferences to both PHP and HTML
bundles, using source.php as the selector:
/* preferences */
{
shellVariables = (
{ name = 'TM_COMMENT_START';
value = '// ';
},
{ name = 'TM_COMMENT_END';
value = '';
},
{ name = 'TM_COMMENT_MODE';
value = 'line';
},
);
}
Doesn't work! I've tried with .php files set to both HTML and PHP
language types.
Idears?
Thanks again, Q
PS: Is it _always_ appropriate to use "HTML" as a file's language? I
noticed the "Source -> View source as HTML" command doesn't work unless
you select " X PHP -> Use HTML".