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