> Is this what you mean?
>
> ^(ATOM|HETATM).*GLN
>
> This will match any line which starts with either 'ATOM' or 'HETATM',
> followed by any string of arbitrary characters, followed by the string
> 'GLN'.
This indeed works but I do think I need to be a bit more specific.
Lets look again at the line:
ATOM 14 CA GLN A 2 -27.648 -9.581 30.325 1.00 10.00
My goal is to have both the 'ATOM' string and the 'GLN' string colored
differently.
Using ^(ATOM|HETATM)\b I can color the ATOM part.
Using \bGLN\b I can color the GLN part.
The problem is that I only want the GLN part to be colored if the line
starts with ATOM. In your reply the complete part starting with ATOM
up to GLN gets colored.
Marc
Hey guys,
I'm a FlashDevelop user trying to get used to TextMate. I'm trying
Simon's code hinting.
Consider these examples. I'm triggering a completion with opt-esc at
the end of each line:
var ball:Sprite;
ball.graphics.be // completes to
beginFill(color:uint,alpha:Number=1.0);
ball.graphics.beginFill(1, // "No property found"
// It ought to complete to beginFill(1, alpha:Number=1.0);
ball.graphics.beginFill // inserts the following grep error into my
file:
grep: /Users/brenton/Library/Application Support/TextMate/Bundles/
ActionScript 3.tmbundle/support/data/completions.txt: No such file or
directory
();
I've heard great things about TextMate. I'm still yet to find an
editor that rivals FlashDevelop on Mac, but I'm hoping to change
that. =)
Thanks,
Brenton
I've noticed that in ActionScript 3.tmLanguage from Simon Gregory's
AS3 bundle, firstLineMatch is defined to be \bAS3\b. I don't know ANY
ActionScript class file that would match that pattern.
I believe this is the correct firstLineMatch for AS3:
package\s?([\w\.]*)\s?{
I have installed on my MAC TextMade not only bought a license yet, but
it had expired.
After he returned to UPDATE trial license for 30 days.
--
Thiago Avelino | www.avelino.us
icq: 2522219 - jabber: thiagoavelinoster(a)gmail.com
Sent from Sao Paulo, São Paulo, Brazil
Like it or not, I end up having to detract for writing code, and work
with css. I started using Tm for this the other day. Great auto
complete in the css markup, that truly is a time saver.
I see a lot of people use FireBug to open a css file left side,
browser on right, and start seeing in real time their changes. This
is probably the best way to do CSS dev IMO, not refreshing a page and
seeing it happen in real time is a real time saver.
I am not a huge fan of FireFox, or Firebug, and it is not a solid
solution, you can not save, there are some deficiencies.
Apple's Web Inspector tool gets me part there, but you can only edit
CSS in their fields, can not get raw access to a file.
I see in TM I can do a "Show Web Preview", which is pretty nice. It
is not pure real time. Why is this? Why can something like FireBug
do real time updates, but TM is more on a schedule? Not knocking it,
I am genuinely curious about the technical aspects of how this is
working.
The trouble is, I do not want to do inline CSS editing, I want to edit
the references CSS file. If I open a html file, which has a link to
a .css file, make change to the .css file, the .html file that is open
in the web preview is not updated. I have to toggle back to the .html
file, make a space or other change, and then I see the update.
Any other way to trigger the update from the linked file?
TM also only works on local files. If I am working on a remote file
over ssh/ftp all image links will be broken, so something as simple as
<img src="icons/blue.png" /> which would load in a browser just fine,
will be broken in the web preview.
Any suggestions to get out of the change/save/switch/reload cycle that
is going to give me carpal tunnel syndrome soon enough.
I am going to look at CSSEdit as some others have suggested, but I
really do not want to add another huge dev tool to the list of things
I need to learn, and I am already 110% happy with hose TM auto
completes CSS.
--
Scott * If you contact me off list replace talklists@ with scott@ *
Hi,
I've had a look for this in the archives but no mention of it, so
here's a very minor bug I just found:
Basically, TextMate will garble its caret bookmark file attribute
whenever column == 0 && line == 0. When saving any file with the caret
in this position, the resulting attribute always read like this:
com.macromates.caret:
0000 78 9C AB E6 52 00 82 E4 FC 9C D2 DC 3C 05 5B 05 x...R.......<.[.
0010 03 6B 30 3F 27 33 2F 15 C2 AB 05 00 8B 99 08 1D .k0?'3/.........
When saving the file with the caret in any other position, the
attribute saves normally:
com.macromates.caret: {
column = 0;
line = 1;
}
Tested & reproduced using TextMate 1.5.8 (build 1498) on an Intel Core
2 Duo MacBook running OS X 10.5.5 (9F33).
I hope that's enough information to identify the offending code --
keep up the good work, it's a great app!
-- Nick
Hi guys,
I'm a new TM user and I've noticed two very peculiar things about TM.
When you have a file that has only one line break (say a minimized css or js
file) and if you have Soft Wrap enabled, TM will freeze for 10 minutes at a
time! Totally weird. Even a TextEdit works perfectly with something like
that.
Another issue is slow regexp. Whenever I execute regexp on a file that's
about 5K lines, TM freezes for 20+ seconds. I've never seen such a slow
regexp. Am I doing something wrong or is there a preference/switch that I
could set so it doesn't do that?
Thanks for any help!
Dave
Hello, long-time Emacs user / new TextMate user here. I wanted to drop
by and say "hi", say how much I am loving TextMate so far (I thought
nothing would drag me away from Emacs), and discuss a couple of
features that I miss.
Firstly, I was on the whole a very happy user of Emacs, and an article
I wrote describing my Emacs environment for XHTML/CSS/Javascript/PHP
web development was even mentioned in the O'Reilly Emacs book. I'd
tried TextMate a couple of years ago and not liked it, but I tried it
again a few weeks ago and was blown away.
However there are two things that I miss. I have done a Google search
on the mailing list archives and couldn't see much discussion of
either of these, but please appreciate that the mailing list archive
is very large and I'm new here so I apologies in advance if I'm just
raking over things that have been discussed to death.
1. Good parenthesis matching and highlighting
I'm actually genuinely surprised at this. TexMate is very weak in this
area. I should be able to put the cursor between say "})" and have the
two closing parentheses highlighted in different colours and have
their corresponding opening parenthese highlighted in matching colours.
2. The ability to parse DTDs and Schemas for automagic knowledge of
markup languages
This is much more of a tall order, but it is something that PSGML mode
and nXML mode provide in Emacs, and to some extent it is similar to
what AUC-TeX provides for LaTeX editing in Emacs. With PSGML mode and
nXML mode I can open any type of SGML or XML document and as long as
Emacs can find the DTD or the Schema it automatically understands the
language in question: it knows what elements are part of the language,
where they can be inserted, what attributes those elements can have
and even what attribute values they can have. That means that you
don't need to write a MathML mode, an SVG mode, etc. In TextMate I
needed to hand edit an SVG file but there is no SVG bundle, just an
XML one. It was the first time in weeks I had to use Emacs. Similarly
work is progressing rapidly now on HTML 5. Support will have to be
laboriously added to TextMate for this in the absence of something
which simply understood the DTD or Schema. AUC-TeX on Emacs worked in
a similar way, in that it was capable of parsing the LaTeX packages
you were using and automatically extracting the commands and
environments they used and adding them to menus.
As I understand it, the features of TextMate 2.0 are somewhat shrouded
in mystery, but I understand that the underlying engine for language
grammars is being re-written. Does anyone know if the kind of feature
I discussed is likely to be possible in TextMate 2? Maybe it is
already possible in TextMate 1, but no one else has seen a need for it?
Anyway, so far the pros of TextMate are outweighing the cons. There
were a large number of niggles with Emacs that were driving me up the
wall, and so far it has been a joy to switch to TextMate. Better paren
matching seems like something that just needs to be there. A more
intelligent way for dealing with markup languages is highly desirable
from my point of view, and could in the long-term end up being a deal-
breaker. I'd be interested to hear what others think.
Best, Darren
Hey guys, I use textmate a LOT on OS-X Leopard 1.5.6 as my main CLI
text editor via .bash_profile and I edit a lot of files from my
computer with textmate. But I have issues with permissions when
trying to "mate" files which my user does not have permissions to
read. Even if I "sudo mate". Textmate pretends it opened this file
but the file is empty, and when you save it it will ask for
administrative privileges to do so.
Steps to reproduce:
$ echo "this is a test" > testfile
$ sudo chown root testfile
$ sudo chmod 700 testfile
$ sudo mate testfile
Result:
Textmate opens a window called "testfile" but shows nothing in this
file. If you edit this file and hit save, a window pops up which asks
for your credentials to save over this file.
Expected result:
#1 - preferred: uses the above "sudo" permission to pass into and/or
launch textmate under for editing of this file. Which would allow
opening and saving of this file without requiring re-entry of
credentials (annoying).
#2 - secondary/temporary alternative: upon failing opening a file
(like what's happening here) asking the user for credentials which
would allow opening the file. If this fails, do not open the window
because clearly, you don't have permissions for this file anyway, you
shouldn't have an editor window open for it. If their credentials
succeed, use the "open" permission for saving also.
Anyone have a workaround for this, or any ideas? The contact area
said to post here first. I googled a bit and didn't find anything so
I'm starting here.
Cheers!
- Andrew
Hello, I seem to be using command-G often to find something again in
TM. I just realized Safari solves this so well, with a highlight of
the word or phrase I am looking for.
Is this possible in TM?
--
Scott * If you contact me off list replace talklists@ with scott@ *
What is the best approach for supporting a language within a language.
For example, in some languages you can embed inline assembly or C code.
You could extend the bundle for the primary language to support the
syntax and completions of the embed language, but that seems a bit
redundant.
Is there a way to use existing language bundle code within another
bundle? Are there any examples of this?
ref. How to config the internal TM preview browser to run the MAMP PHP
engine?
When running PHP scripts with TM cmd+shift+R run command, the internal TM
preview browser will use the system installed PHP engine. How can I config
the internal TM preview browser to run the MAMP PHP engine instead?
--
View this message in context: http://www.nabble.com/How-to-config-the-internal-TM-preview-browser-to-run-…
Sent from the textmate users mailing list archive at Nabble.com.
I want to create a bundle to support a new text data format. It would be
pretty simple, mostly just syntax highlighting and comment character
definition. Is there manual or tutorial on creating bundles? I couldn't
find one on the Textmate website.
Thanks.
--
W.P. McNeill
http://staff.washington.edu/billmcn/index.shtml
Hello, usually I will option draw a box around some text, press
control-Q and it wraps it with hard line breaks. Handy.
I would like to define this in a more exact way, and set up a bundle
that does the same thing, to selected text, at say, 80 chars wide.
Not right on the 80 of course, take into account in the same way
control-Q does, where a word ends.
Thanks.
--
Scott * If you contact me off list replace talklists@ with scott@ *
I am working on mocking up a site, and I wanted to change the some-
site.com link to example.com using the Bundle Editor. I can highlight
the command, and see that it's there and what the shortcut is, but I
can't seem to edit it at all. (I don't have this problem with other
snippets and bundles and so forth.)
How do you do this?
Thanks,
Walter
Hello, please would you unsubscribe me from the mailing list?
I've tried this process using the form on your web page but I am still
getting the newsletters.
Thanks,
Alistair
--------------------------------------------------------------------------
Alistair Colling
Interactive Developer
FPP Brand Communications (Newcastle upon Tyne)
The Courtyard
Dinsdale Place
Sandyford
Newcastle upon Tyne NE2 1BD
Telephone: +44 (0)191 261 6662
Fax: +44 (0)191 233 2511
This transmission is confidential and intended solely for the person or organisation to whom it is addressed.
It may contain privileged and confidential information. If you are not the intended recipient, you should not
copy, distribute or take any action in reliance on it. If you have received this transmission in error, please
notify the sender at the e-mail address above.
FPP Design Limited. Reg. Office: The Courtyard, Dinsdale Place, Sandyford, Newcastle upon Tyne NE2 1BD.
Registered Number 3775564. Registered in England and Wales. Visit our website at http://www.fpp.net/
Very nice, thanks!
baptiste
1. Re: highlight (JiHO)
Message: 1
Date: Sun, 10 May 2009 19:52:30 -0400
From: JiHO <jo.lists(a)gmail.com>
Subject: [TxMt] Re: highlight
To: TextMate users <textmate(a)lists.macromates.com>
Message-ID: <91EB0E2E-0293-4B78-9776-04D854EC3710(a)gmail.com>
Content-Type: text/plain; charset="us-ascii"
On 2009-May-09 , at 15:35 , baptiste auguie wrote:
> Thanks for the two replies. highlight is a cool program I found here,
>
> http://www.andre-simon.de/doku/highlight/en/highlight_io.html
>
> I made an attempt to create a TM command for this, and it seems to
> work without the need for a temp directory,
>
> highlight -H --syntax R --inline-css --fragment --enclose-pre
> --style print `$TM_SELECTED_TEXT` | pbcopy
>
> It seems to work, albeit with some warning (seems to be attempting
> at interpreting the code of TM_SELECTED_TEXT) but since I simply
> discard the output and use the clipboard it's fine for my purpose.
>
> It's a small world JiHO! --- I'm hoping to use this shortcut to post
> R code on the new ggplot Wiki (http://ggplot2.wik.is).
OK, then I tried to link to some pasties and it does not work on this
wiki.
But indeed highlight seems to be nice and is very flexible in its
input. In particular it accepts input from stdin (where TM pipe your
text). So I installed it from macports but I don't have all the
options you have (--inlince-css, --enclose-pre etc.) because the
version there is too old.
Still a simple, one language (R here) bundle command could be:
highlight -X -l --include-style --syntax=R --style=print
input set to selection or document
output set to new document (or discard and add "| pbcopy" at the end
of the command).
This feeds the curent selection or document to highlight directly, not
need for the $TM_SELECTED_TEXT (and this solves your problems caused
by shell expansion I guess).
But creating a temporary file might still be desirable: if you create
it with the same extension as the current file, highlight will be able
to recognize the language and your bundle command will work for any
language.
Attached is my bundle item (currently set to display the HTML, pipe to
pbcopy if you want to copy). Here is the code:
# Extract file extension
extension=$(echo "$TM_FILEPATH" | awk -F "." {'print $NF'})
# Create a unique temporary file
tmpname=$(mktemp /tmp/TMtemp.XXXX)
tmpfile="$tmpname.$extension"
# Capture TM selection/Document
cat > $tmpfile
# Feed that to highlight
highlight --input="$tmpfile" -X -l --include-style --doc-title=$
(basename "$TM_FILEPATH") --style="vim-dark"
Hi all,
Thanks for the two replies. highlight is a cool program I found here,
http://www.andre-simon.de/doku/highlight/en/highlight_io.html
I made an attempt to create a TM command for this, and it seems to work without the need for a temp directory,
highlight -H --syntax R --inline-css --fragment --enclose-pre --style print `$TM_SELECTED_TEXT` | pbcopy
It seems to work, albeit with some warning (seems to be attempting at interpreting the code of TM_SELECTED_TEXT) but since I simply discard the output and use the clipboard it's fine for my purpose.
It's a small world JiHO! --- I'm hoping to use this shortcut to post R code on the new ggplot Wiki (http://ggplot2.wik.is).
Cheers,
baptiste
----------------------------------------------------------------------
Message: 1
Date: Fri, 8 May 2009 10:08:01 -0400
From: JiHO <jo.lists(a)gmail.com>
Subject: [TxMt] Re: hightlight macro
To: TextMate users <textmate(a)lists.macromates.com>
Message-ID: <7ADEBAA5-A929-4FB6-9782-8C4CEA7BE126(a)gmail.com>
Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
On 2009-May-07 , at 05:21 , baptiste auguie wrote:
> I'm using a command line to create a html snippet with embedded css
> to post on a Wiki. At the moment I run,
>
> highlight test.r -H --inline-css --fragment --enclose-pre --
> style print | pbcopy
>
> on the command line. I'd like to create a macro in TM so that I can
> get the same processing applied to selected text in a document. I've
> never written any TM macro and I don't know Ruby (or bash for that
> matter). Would you be kind enough to help me out?
Apparently highlight (is that a command of your creation or something
else? It would help to know a little more about it) takes a file as
argument. So the only ways to have it work on a selection are:
1- to modify highlight to accept either a file or some raw text from
standard input (or only raw text)
2- copy the current selection to a temporary document and feed that to
highlight
If 1, then you can use highlight with no argument and set TM to feed
it selection or document. If the new version can only be made to
accept raw text you can still use it independently this way:
cat doc.r | highlight -H -...
If 2, the command would look like
# create a temporary document (cleanly)
tmpDoc=$(mktemp)
# fill it with TM input (selection or doc)
cat > $tmpDoc
# feed it to highlight
highlight $tmpDoc -H -...
Otherwise, depending on the purpose of these snippets, there are
plenty of online paste boards with syntax highlighting support for R,
and one is accessible from textmate (Paste selection online). You get
something like this:
http://pastie.textmate.org/private/epwkcdngtzljzkf1zxg
with a link you can embed in other pages (and I guess also in a wiki).
I am also pretty sure I saw some that could output the html that is
displayed (with the colors etc.).
Hop that helps.
JiHO
---
http://jo.irisson.free.fr/
Hey guys,
After the HTML bundle last week, it's time for my CSS bundle to get
the "separate bundle" treatment... It won't touch the default CSS
bundle anymore and it's called mCSS... Although this bundle is
anything BUT minimal... I had to stick so many tab triggers in there
that I'm going to dream about it tonight I think ;)
Anyway, it's over there:
http://minimaldesign.net/articles/read/textmate-css-bundle-v.1.5
Let me know if there's anything else you'd like to see in there...
Thanks!
- Yann
On May 8, 2009, at 11:12 AM, Gerd Knops wrote:
> It's the dashes... ATM the bundle tries to find whatever word TM gives
> it, it ignores the selection.
>
> As a test, add '-' to the list of "Word Characters" (TextMate/
> Preferences, Text Editing tab). That should cause 'get-bottom-up-
> codelets' to be indicated as word, which the bundle should find.
That does the trick, thanks! And it will save me from having to select
the whole word for searching.
>> BTW is there source available for tmctags?
>>
> It's just a perl script...
Oh, yes, I see... I guess I just had too much whizzing around when I
visited the Support/bin directory.
Nice package!
Best,
Charles
Dear list,
I'm using a command line to create a html snippet with embedded css to post on a Wiki. At the moment I run,
highlight test.r -H --inline-css --fragment --enclose-pre --style print | pbcopy
on the command line. I'd like to create a macro in TM so that I can get the same processing applied to selected text in a document. I've never written any TM macro and I don't know Ruby (or bash for that matter). Would you be kind enough to help me out?
Thanks,
baptiste
Hi guys!
I've been using TextMate for a while (still a bit of a newbie though),
especially for Latex and I really LOVE everything about it. However, after
making a clean install due to a new MacBook I'm having some problems with
cleaning up the aux files that is created when I press cmd-R.
As I remember from my previous installation - all the aux files were deleted
when I clicked "clean up" in the html-window (that is displayed after cmd-R)
or by hitting ctrl-alt-delete, but now nothing happens - all files are still
in the folder where the .latex and .bib files are and the html-window
displays "Found 0 errors, and 0 warnings in 0 runs" after "clean up".
Have I messed something up or is there some issues with the "trash aux
files" command? Please help as it's so frustrating to have to manually
delete these files when, for instance, I've made some changes in the
.bib-file and need to include this new citation - but it only results in a
[?] until I manually delete the aux files and re-run "Typeset and view".
My installation:
TextMate v. 1.5.8 (1498)
Latex Bundle rev. 11510
MacTex 2008 with Skim as my selected viewer
Thanks so much for your help!!
/AM
Ps. Some time ago I read in some forum (maybe here I don't remember, sorry)
that the issue with "umlauts" in labels for sections (etc.) would be
addressed by changing the umlauts to the "normal" character without the
umlaut or a "_"-character as other special characters. Any news on this?
--
View this message in context: http://www.nabble.com/Latex---problem-with-%22clean-aux-files%22---nothing-…
Sent from the textmate users mailing list archive at Nabble.com.
Hi
because a reason I can't understand, Wiki in spanish is using urls
with funny chars like
http://es.wikipedia.org/wiki/Programación_dinámica_(computación)
this only gives you problems, and TextMate is no an exception. TM is
unable to jump (Cmd-F1) to them.
-- Juan Falgueras
Are there any TextMate users working on Automake, Autoconf, and TADS3
grammar bundles?
-----------------------------------
See the amazing new SF reel: Invasion of the man eating cucumbers from
outer space.
On congratulations for a fantastic parody, the producer replies :
"What parody?"
Tommy Nordgren
tommy.nordgren(a)comhem.se