Hi,
When I used to have a project open and then close it, the next time I would open the project all the files that were open would still be open and I could just start working on them again. Now, when I open the project again, all the files are closed and I have to open them all again. It did not used to do this, whatever was left open, would still be open. Now whatever was open, is closed. I cannot find any preference to change this and I'm not sure why this behaviour changed at all.
Does anyone know how change it back, or what I may have done to change it? I want all the files I was working on when I close the project to still be open when I open it again.
Thanks,
Jon
When you want to start a new thread ALWAYS write a NEW letter to the
mailing list rather than reply to an existing one (and change subject).
When you reply to an existing letter the threading gets messed up
which makes managing threads problematic (and messes up the archive)!
Hi all-
Started working with Scala, but am bewildered by the number of bundles available for TextMate. Can anyone offer some info on which ones I should look at if there isn't an obvious choice?
Currently using Mads Hartmann's version...
Thanks!
Charles
Hello,
wenn i use run makeindex under Texmate i got this
____________________________
Input index file report.idx not found. Usage: makeindex [-ilqrcgLT] [-s sty] [-o ind] [-t log] [-p num] [idx0 idx1 ...]
Found 0 errors, and 0 warnings in 0 runs
index exited with status 1
____________________
I wante to use this command, then i run makeindex under textmate.
_______
makeindex Studienarbeit.nlo -s nomencl.ist -o Studienarbeit.nls
_______
Is it possible to change that?
cheers Malte
Hi, some time ago I asked a question about the Reformat Comment command from
the Source bundle and Allan kindly made some suggestions. In the interim
this command has continued to sort of not work the way I thought it should
in a few cases, and the other day I actually sat down and spent an
embarrassingly long time trying to fix it, and I was hoping someone could
give me some feedback. There were two problems that I wanted to fix:
1.) The command doesn't respect the wrap column set by the user
2.) The command sometimes adds extra whitespace where it shouldn't, for
example if you reformat
// lorem ...
//
// lorem...
it will add an extra space at the end of the empty line.
The first problem was pretty straightforward, and I think I corrected the
second problem as well. It looks like the problem was in the rubywrap.rb
script; a regular expression is used to identify comment lines, and this
regexp would incorrectly match the newline at the end of the empty line. I
changed it so that it only matches trailing spaces.
I've been using the modified rubywrap for a little while now and haven't
noticed any problems introduced by this change. A diff patch is attached; if
anyone has a few minutes to take a look I would appreciate it. Or if anyone
thinks this is just a non-issue, I would appreciate hearing that too. Is
this the right place to submit changes to be included in the Source
repository? Thanks in advance!
-Daniel Grady
Hello,
this is a little bug I found. When you try to open a named pipe (FIFO)
in TextMate, it crashes.
It's not that I do it regularly, I just tried to do it from curiosity :)
Karel
I would like to manage a few settings on a per-document basis (including unsaved documents). I'm not seeing any way to get a unique identifier associated with the document to make this possible. The documentation discuses TM_FILEPATH and TM_DIRECTORY which might be a start, but those don't seem to be set even when I execute the command with a saved document.
I looked into Applescript - I can get a list of application documents, but there does not seem to be any associated identifier. Even if there was, I would need to figure out the document associated with frontmost window. In Textmate, the window document property always seems to be null.
Thanks for any suggestions.
John DeSoi, Ph.D.
Hello,
I have used TextMate for editing LaTeX documents for a while now and I'm
very pleased with it. But I find it difficult to find the caret in the
text, especially when correcting documents and therefore browsing
through larger amounts of text without any commands.
Is there a possibility to change the width of the caret so that it would
appear to be a blinking rectangular?
Thank's in advance,
Daniel
Hi,
I am a flash developer and seeking the best way to use TM as my main development environment. I am using the flex and as3 bundles but I still find myself not having a debugger. If any of you out there could help me get set up with something that would be most helpful. I have heard fdb is useful (the command-line flex debugger), but I'm more use to GUI like the one included with Flash Builder. If there was any way to use that it would be great.
Thanks,
Dave
Stephen Oravec asked...
> Hello I'm a new user to textMate,I made a HTML Template, but don't know how
> to add it to TM, the help file doesn't really give much info on where to
> save the template.
Open the bundle editor (command-control-option-b) with at least one
file open in TextMate.
Select the bundle you'd like the template to be associated with (and
make a new one if appropriate). Then choose "new template" from the
"+" at the bottom left of the window, and fill in the template
appropriately. The file is saved to a "Templates" directory inside
that particular bundle. (Choose "show package contents" on one of
TextMate's existing bundles that has at least one template available
from the File menu and you'll see how it's all structured. They're
saved inside /Applications/TextMate/Contents/SharedSupport/Bundles/
for the bundles that come with TextMate, and in your
Library/Application Support/TextMate directory for any that you add.)
Cheers,
Paul
Hello I'm a new user to textMate,I made a HTML Template, but don't know how
to add it to TM, the help file doesn't really give much info on where to
save the template.
I've patched the ackmate plugin for textmate to fix the problem described in this issue:
Searching inside symlinked folders opens a new window
http://github.com/protocool/AckMate/issues#issue/5
Trevor Squires had been opening a a file like this from the plugin:
[[[NSApplication sharedApplication] delegate] openFiles:[NSArray arrayWithObject:absolute]];
Evidently after passing through Cocoa the original path to the file, which includes a dir symlink, is converted to the
equivalent path without the symlink before textmate proper gets the event. Texmate then opens the file in a new window because
it isn't in the project path anymore.
Here's the change I made:
http://github.com/stepheneb/AckMate/commit/1bc7e4ca698b51b2a0d523ecea277bfb…
Which was to call Texmate going through the shell with an NSTask.
I'm wondering if there is a better way -- Trevor thought my hack was a bit ugly ;-)
Hi there -
just in case anyone else runs into the following issues when using TextMate's Perl bundle and trying to run scripts:
1) TextMate has its own PATH variable (in the settings)... It's obvious but, make sure that the perl you are using is on that path (TM doesn't pick up the path in your env).
2) there is a problem with tainting in the file - to get round this (if you are using the -T in your shebang line for example)
change line 17 of exception_handler.pm in bundles/Perl.tmbundle/Support/exception_handler.pm to:
$ENV{"TM_ERROR_FD"} =~ /([0-9]+)/; my $error_fd =$1;
This will ensure that $error_fd is untainted.
3) You may find the following error, if a module you are using uses Carp, e.g. you are using use strict (or just use strict 'vars') and you have an error in the file:
Attempt to reload Carp/Heavy.pm aborted.
Compilation failed in require at /Applications/TextMate.app/Contents/SharedSupport/Bundles/Perl.tmbundle/Support/exception_handler.pm line 30.
If you do, make sure you add a use Carp::Heavy; in the script you are running. I think this is due to clearing up a circular import that would happen otherwise (because of some cleverness in exception_handler.pm)
If anyone can clarify any of this, great.
all the best
Tim
Tim Diggins
http://red56.co.ukhttp://tim.teamportfolios.com/
I am sure this has been discussed before but I cannot track it down.
I get the following error when using the TODO bundle with a latex file:
----
Scanning directory: ~/Dropbox/Aston/Research/Papers/Ontology_Evaluation
(erb):4: undefined method `+' for nil:NilClass (NoMethodError) from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:99 from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/erb.rb:716:in `grep' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:77:in `each' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:77:in `grep' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:77 from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:76:in `open' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:76 from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:75:in `each' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:75 from /Library/Application Support/TextMate/Support/lib/textmate.rb:201:in `call' from /Library/Application Support/TextMate/Support/lib/textmate.rb:201:in `each_text_file' from /Applications/TextMate.app/Contents/SharedSupport/Bundles/TODO.tmbundle/Support/todo.rb:71
----
How can this be fixed?
Thanks,
Christopher
Thanks,
I have tried to add "text.html -source.php" in the scope selector for the TAB snipped in HTML bundle, unfortunately the problem seems to be still there. What could be wrong?
I would like to remove that function from there only as I would like to disable other things when in phpDoc scope.
thanks
>> How is it possible to disable such behavior? I just want a tab space there.
>
> Open the bundle, scroll to the HTML bundle and find the snippet with the name "?". Either add " -source" to the scope or just remove the tab trigger.
--
Ciao
Fabio
I'm looking for a way to allow the user to login via a web page and then grab the session cookie set by the server. I want to use this to make further queries to the same server using curl. I discovered the MoinMoin bundle does something like this by reading the browser cookie file, but the cookie I need is a session cookie so it does not get written to the file.
More generally, is there any way to get a list of HTML output windows and query their properties, e.g. current URL, etc?
Thanks!
John DeSoi, Ph.D.
Hi All,
i'm getting errors when trying to use comands from the rails bundle. likei:
/Library/Application Support/TextMate/Bundles/Ruby on
Rails.tmbundle/Support/bin/create_partial_from_selection.rb:17:
invalid multibyte char (US-ASCII)
/Library/Application Support/TextMate/Bundles/Ruby on
Rails.tmbundle/Support/bin/create_partial_from_selection.rb:17:
invalid multibyte char (US-ASCII)
/Library/Application Support/TextMate/Bundles/Ruby on
Rails.tmbundle/Support/bin/create_partial_from_selection.rb:17: syntax
error, unexpected $end, expecting ')'
...Mate.exit_show_tool_tip("The ‘create partial from selectio...
... ^
I am using latest edge, so
http://github.com/drnic/ruby-on-rails-tmbundle/issues/issue/14 isn't
it.
my ruby_path his /Users/Administrator/.rvm/bin/textmate_ruby
--
dc
David Clark
16 Harcourt St #2I
Boston, MA 02116
I am very curious about git. I understand roughly
how it works and it can be used, but since there
are ppl here using it massively, would you kindly
write a short 'git/git bundle for dummies' ? What I'd like
is an example of how concretely you use it every day
and what it gives you. My needs are basic, I have
many joint projects (=joint papers) with several people
scattered around the world, and I would like to
understand if it is worth learning to use it or not
to manage my collaborations.
Piero
Hi,
like suggested by Allan I'll try to explain again the problem:
1. create a new file from template -> HTML -> XHTML - 1.0 STRICT;
2. save it like test.php and edit it in HTML mode;
3. before the head ends, type "style" and press tab;
4. go inside style tags, now it should be possible to use autocomplete for CSS;
5. start typing something like:
#test { font
now hit the Esc key while the cursor is near the "t". It does nothing here.
Now try to create a new empty file, save it as test.css: you are in CSS mode.
Like before type:
#test { font
and hit Esc near the "t": it will start to rotate autocomplete choices like:
font-family
font-size
font-size-adjust
etc.
This is what I would like to have inside <style> </style> in the HTML head.
Here is not working in such way: yes I can hit TAB and I will get similar choices but I like so much the Esc key that I would like to know if it is possible to have it work inside html page head style tags.
It is so annoying to have to type all the words like "border" when you can just type "bor" and hit Esc!
It works in CSS file not in php / html one.
Is there a fix?
Thanks!
--
Ciao
Fabio
--
Caselle da 1GB, trasmetti allegati fino a 3GB e in piu' IMAP, POP3 e SMTP autenticato? GRATIS solo con Email.it http://www.email.it/f
Sponsor:
Risparmia fino al 90% con Groupon CityDeal.
* Gruppi D'Acquisto Sicuri e Risparmi Garantiti
Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid813&d-8
The code completion keyboard shortcut (ALT+ESC) is not working for me in
'css' files. Instead, the following message gets generated wherever my
cursor is:
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/codecompletion.rb:319:in
/bin/bash: -c: line 0: unexpected EOF while looking for matching `''
/bin/bash: -c: line 1: syntax error: unexpected end of filemap' for
nil:NilClass (NoMethodError)
from
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/codecompletion.rb:88:in
/bin/bash: -c: line 0: unexpected EOF while looking for matching `''
/bin/bash: -c: line 2: syntax error: unexpected end of filenew'
from
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/codecompletion.rb:60:in
I'm not super techy, so I'm not exactly sure what that means. Is my
'codecompletion' file corrupt? Is some path broken?
Do I need to re-install or replace a file to fix this?
Thanks in advance!
Clay
Hi
I want to find a way to have history of changes/movement over a file/ files in project. I've already found a way to go to last 1 change, but I love to see ability to move over last editing places with ease.
Is there any way?
best regards
Hi,
According to the texmate
manua<http://manual.macromates.com/en/preface.html%20>l
back-tab should be triggered by Shift-Tab.
For some reason, Shift-Tab isn't working for me. I can trigger back-tab
with Shift-Alt-Tab.
Shift-Tab would be preferable, any ideas why it's only working with
Shift-Alt-Tab or how to get Shift-Tab to work?
many thanks,
-Mike
I can't run .rb files in TextMate; get this error:
/Applications/TextMate.app/Contents/SharedSupport/Bundles/Ruby.tmbundle/Support/RubyMate/run_script.rb:1:
undefined method `+' for nil:NilClass (NoMethodError)
Did a lookup for this error on Google; is my Ruby bundle outdated?
Thank you in advance.
--
View this message in context: http://old.nabble.com/Can%27t-run-Ruby-files-in-TextMate-tp29563002p2956300…
Sent from the textmate users mailing list archive at Nabble.com.
When I change the language in the Edit > Spelling > Show Spelling & Grammar
menu from English to Italian, it seems to change the language for all
textmate files, not just the one I'm working with.
I suspect I'm doing something wrong here, but is there a way to have a
per-file language for the spell checker?
--
View this message in context: http://old.nabble.com/Multiple-Languages-for-Spell-Checker-%28Per-file-lang…
Sent from the textmate users mailing list archive at Nabble.com.
Hello Allan - I have a request for 2.0:
in the Bundle Editor I've several times made the grave error of hitting delete one too many times and accidentally deleting an entire bundle.
for whatever reason, when I'm in the BE and going through my commands, macros, etc, I've managed to accidentally select the bundle itself and hit delete.
not such a big deal if they're stock bundles but many of mine have been customized to suit my needs.
anyway, I've made this mistake a couple of times and I'd just like to suggest a warning dialog of some kind that pops up before you delete an entire Bundle.
I know it's kind of a spaz move on my part - but if it's happened to me than it's happened to other people too.
thanks!
Bennett
>> Rob McBroom <mailinglist0(a)skurfer.com> wrote:
>>> The fancy ?new? web preview, not the built-in boring one. :)
>>
>> I'm not sure what you mean by that, for all I know the features you're
>> talking about are available in the built-in web preview?
>
> OK, so they're both bundled with TextMate, but there's the one that's on the application's Window menu (which is what I meant by ?built-in?) and then there's the one that uses stuff in the support folder.
Out of curiosity, do you consider the Web Preview enabled via Application Support/Textmate to be "fancy" just because it has a different theme, or does it have some other codebase?
The reason I'm asking is that a few months ago the option to run WebMate, the WYSIWYG editor, disappeared from my "boring" Web Preview and I've been unable to conjure it back:
http://lists.macromates.com/textmate/2010-July/031152.html
I'm wondering if I should be trying this other, "fancy," Web Preview? If it's as simple as downloading a Theme that reveals the "Enable live editing" link, I'll be a happy camper.
jon
______________________________
Still Water--what networks need to thrive.
http://still-water.net/
Bennett, rather than a dialog warning, Cmd-Z should be your friend.
Undo is my favourite command....
Carl Forde
Our doubts are traitors and make us lose the good we oft might win by
fearing to attempt.
— William Shakespeare, "Measure for Measure", Act 1 scene 4
Message: 10
> Date: Wed, 25 Aug 2010 11:54:16 -0700
> From: plastichairdoo <plastichairdoo(a)gmail.com>
>
> Hello Allan - I have a request for 2.0:
>
> in the Bundle Editor I've several times made the grave error of hitting
> delete one too many times and accidentally deleting an entire bundle.
> for whatever reason, when I'm in the BE and going through my commands,
> macros, etc, I've managed to accidentally select the bundle itself and hit
> delete.
> not such a big deal if they're stock bundles but many of mine have been
> customized to suit my needs.
>
> anyway, I've made this mistake a couple of times and I'd just like to
> suggest a warning dialog of some kind that pops up before you delete an
> entire Bundle.
>
> I know it's kind of a spaz move on my part - but if it's happened to me
> than it's happened to other people too.
>
> thanks!
>
> Bennett
>
>
Hi, sorry if this is a well-known issue.
I purchased a site license and installed TextMate on my classroom machines. The students will be using network accounts.
What I discovered, to my dismay, is that registering TextMate using the local admin account does not unlock it for a network user. (When I logged on using a test student account, I needed to register again.)
This will be, to put it mildly, a pain in the ass, as students are not assigned to a particular machine.
Is there a way around this? I don't immediately see where TextMate maintains license information locally.
Thanks!
Randy J. Zauhar, PhD
Assoc. Prof. of Biochemistry
Director, Graduate Program in Bioinformatics
Dept. of Chemistry & Biochemistry
University of the Sciences in Philadelphia
600 S. 43rd Street
Philadelphia, PA 19104
Phone: (215)596-8691
FAX: (215)596-8543
E-mail: r.zauhar(a)usp.edu<mailto:r.zauhar@usp.edu>
Web: http://binfcompsci.usp.edu/~zauhar
"We have always known that heedless self-interest was bad morals; we know now that it is bad economics."
-- Pres. Franklin Roosevelt, 20 January 1937
Hello,
I am trying to use the "reformat document" command in the stock JavaScript bundle. When I run this command I get the following PHP error:
PHP Notice: Undefined index: TM_BUNDLE_SUPPORT in /private/tmp/temp_textmate.i7oQrD on line 19
PHP Stack trace:
PHP 1. {main}() /private/tmp/temp_textmate.i7oQrD:0
PHP Warning: require(/lib/beautify.php): failed to open stream: No such file or directory in /private/tmp/temp_textmate.i7oQrD on line 19
PHP Stack trace:
PHP 1. {main}() /private/tmp/temp_textmate.i7oQrD:0
PHP Fatal error: require(): Failed opening required '/lib/beautify.php' (include_path='.:/usr/lib/php') in /private/tmp/temp_textmate.i7oQrD on line 19
PHP Stack trace:
PHP 1. {main}() /private/tmp/temp_textmate.i7oQrD:0
Can someone help me troubleshoot this? Have already lost several hours.
The fancy “new” web preview, not the built-in boring one. :)
I'm trying to create my own theme for the web preview and I have a couple of questions. I've got CSS in `~/Library/Application Support/TextMate/Themes/Webpreview/Liberation/style.css`. Among other things, it contains this:
body {
background: #FAF4DC;
font-family: "Liberation Sans";
}
pre, code {
font-family: "Liberation Mono";
}
So, my first question is: Why does this font get applied to all themes and not just when I select “Liberation” from the drop-down?
Second question…
I'm a plain-text e-mail guy, but on occasion, I'll want to copy and paste something out of the web preview (generated using Markdown) to send to Windows/Outlook-using coworkers that don't care about standards. Since they probably won't have the Liberation fonts, I tried to add some fallbacks like this:
body {
background: #FAF4DC;
font-family: "Liberation Sans, Helvetica Neue, sans-serif";
}
pre, code {
font-family: "Liberation Mono, Consolas, monospace";
}
This causes the font to be ignored completely and everything reverts to Times (again, in all themes). That should be valid CSS, so why does it break? Isn't this just being parsed by the system's WebKit?
Can I do what I'm trying to do? Thanks.
--
Rob McBroom
<http://www.skurfer.com/>
Hi,
I am trying to comment my functions using phpdoc, supported by php bundle.
Unfortunately I have a little problem, when I type:
/**
* Summary
*
* @return
*/
and the cursor is just after the "n" of "@return" tag, I cannot press the TAB key because the return chars are converted:
/**
* Summary
*
* @↩
*/
How is it possible to disable such behavior? I just want a tab space there.
Thanks!
--
Ciao
Fabio
at some point opening a file with Textmate from terminal like this $mate
filename worked great but some where along the way it does not work anymore.
Now I have to do this $open filename -a TextMate.
What do I need to do to get the shortcut working again ?
thanks,
--
Matthew Wallace
----------------------------------
http://mswallace.comhttp://twitter.com/mswallace
Hello,
i have a problem to use the "run MakeIndex"-function in Textmate.
If i try it, i got the following message.
Input index file report.idx not found. Usage: makeindex [-ilqrcgLT] [-s sty] [-o ind] [-t log] [-p num] [idx0 idx1 ...]
Found 0 errors, and 0 warnings in 0 runs
index exited with status 1
I guess, that Textmate tries to use the wrong command. If i use "makeindex report.nlo -s nomencl.ist -o report.nls" in the terminal it is working fine. Is there any possibility, that i could change the command, which is used by the makeindexfunction?
Is it by the way possible to use a short key for "run makeIndex" and "run BibText"?
best regards
Malte
I'm new to the list, and I'm sure that this has been hashed, rehashed, and dragged up by every new member. What is the plan for it? Anything new besides what's on the blog?
Thanks,
-Josh
____________________________________
Joshua Kehn | Josh.Kehn(a)gmail.com
http://joshuakehn.com
Hi,
I was about to report a bug (I think I can use the word here), but I did my duty and searched the mailing list first, and I found an email dating from... 2004, which describes the exact same thing:
http://lists.macromates.com/textmate/2004-October/000581.html
I agree with item 1, that's exactly how I felt too (thought TextMate crashed until I realised I didn't have spinning pizza of death, to use the same wording).
Item 2 doesn't really bother me as I use the OakWrapColumns preference.
Item 3 is what I wanted to report: when using a black background, some weird things happen...
There's no really any question I guess, just to say this bug is still here.
Thanks,
enas
hey all,
so - I'm probably missing something or just brain-farting - but is there a way to have a popup menu of *just* the commands/snippets for the *current bundle* you're using?
basically like opt-esc but with just the current bundle's commands/snippets/etc
thanks,
bennett
> What do you see when you put the cursor somewhere in the CDSS and hit ??P?
>
> `source.css.embedded.html` should be on the list somewhere. If not, I?m guessing your HTML bundle has changed from the default somehow.
If I move inside the tags:
<style type="text/css" media="screen">
</style>
of and html page ( a .php page in html mode ), I see : text.html.basic and source.css.embedded.html
If I move to a css file and do the same, I just see source.css .
Thanks
--
Ciao
Fabio
Hi, I made two small changes related to the Reformat Comment command in the Source bundle. The first is to have the command respect the wrap column set in TextMate's interface. The second is a fix to the rubywrap.rb script; it previously did not handle empty comment lines correctly. For example, if you were to run
// lorem ...
//
// lorem ...
through rubywrap, it will add an extra space at the end of the empty line in the middle. Within the script a regular expression is used to identify comment lines, and this regexp would incorrectly match the newline at the end of the empty line; I changed it so that it only matches trailing spaces. A diff of the changes is attached.
I haven't noticed either of these changes causing problems that didn't exist before; maybe they could be rolled in to the Source bundle?
-Daniel Grady
Hi,
I'm interested in some SQL improvements for TextMate. I'm trying to implement a command to execute the selection or SQL line. Not the current textual line, but the SQL line from the beginning of the command to the ending semicolon which may span many textual lines.
I've made some progress with the grammar and understanding scopes. I think I need to create a "SQL Statement" scope, but I don't see how to write the ending regular expression for the semicolon. Is there a way to do this in the grammar that ensures the semicolon found is not in a string or comment?
And TM_SCOPE tells me what scope I'm in, but how to I get the text of the current scope?
Thanks,
John DeSoi, Ph.D.
Hello,
I just installed Textmate on OS X 10.6.4, but the disk image did not create
the Textmate folder in Application Support, which is perplexing. Has anyone
encountered this issue? Either way, does anyone know how I could resolve it?
Here are the steps I executed:
1. Downloaded Textmate.app from
http://download.macromates.com/TextMate_1.5.9.dmg
2. Launched disk image
3. Dragged Textmate.app to my user's Application folder
4. Launched Textmate.app
5. Entered previously purchased license
Thank you.
>> Hi, hmm for me it works. If I locate the cursor after "1em; ", type b and press ESC I can see the autocompletion stuff.
>
> What happens if your cursor is inside the css stuff and you press CTRL+ESC? Does the CSS bundle pop up? If not, is the CSS bundle available? Is the document set to HTML?
In an empty css file, I can hit Esc after a "b" and I will get all the list of possible choices like border, background etc., if I hit CTRL+ESC it opens a popup with the bundles list with the focus on CSS.
If I do the same in html mode inside css stuff, the ESC key does only show me keywords that start with "b" it shows only "body" "base" "big" "blockquote" "br" "button", seems like html autocomplete instead of css one.
If I hit CTRL+ESC it opens a popup with the bundles list with the focus on PHP Smarty and that could be the problem!
I have just see that if I disable PHP Smarty bundle the problem seems to be solved.
But what if I want to use both bundles? Is there a bug to be solved in one of the two packets?
Thanks!
--
Ciao
Fabio
Hi,
Would anyone be able to tell me how I can get TextMate to use zsh as the default instead of bash for running commands?
I've tried adding #!/bin/zsh at the top of commands but that just runs them through bash first and it's altering some of the commands along the way.
Any help is much appreciated.
Iain
Is there a way of modifying the Typeset & view command in the LaTeX bundle so
that it will run make before typesetting the .tex file?
I have a Makefile that is used to run a script that generates a .tex file
that includes information from the current Git repository. (I'm using the vc
package, hence the need for the Makefile.)
Thanks,
APC
--
View this message in context: http://old.nabble.com/Run-make-when-typesetting-a-.tex-file-tp29337376p2933…
Sent from the textmate users mailing list archive at Nabble.com.
Hi,
That's maybe a basic usage question, but I couldn't find any answer on my own or by searching through the mailing list.
Is there any way to specify that I want to keep the HTML output window of some command in the background?
What I'm doing is that I'm editing some latex document, and what I'd basically like is that when I trigger a compilation, the compilation window doesn't gain the focus. For one thing, this allows me to keep editing the document while compiling, plus, it allows, once the focus has been given to the PDF viewer (i.e. Skim) to switch back to the editor with a simple Cmd-Tab.
Is that possible?
enas
Most of the Hyperlink Helper commands in that bundle do not work for me.
For example, if I run the 'Look up selection on wikipedia and link' command, I get:
----
sh: : command not found
/Library/Application Support/TextMate/Support/lib/ui.rb:297:in /bin/bash: -c: line 0: unexpected EOF while looking for matching `''
/bin/bash: -c: line 2: syntax error: unexpected end of filenew'
from /Library/Application Support/TextMate/Support/lib/ui.rb:20:in /bin/bash: -c: line 0: unexpected EOF while looking for matching `''
/bin/bash: -c: line 2: syntax error: unexpected end of filecall_with_progress'
from /tmp/temp_textmate.Wzo5AT:63:in
----
What do I need to do to fix this?
Thanks,
Christopher