Even though I'm #1498 I have to admit I'm quite a bundle newbie. One
of the issues that I recently came across was that the Shoulda Bundle
was not recognizing "context" and "should" blocks within test classes.
This is important, because the symbol navigation is extremely useful
for these.
At first I thought there was maybe a conflict or something else going
on, but when I moved these blocks into the root scope of the file they
worked. I realized that the shoulda language was built on
source.ruby.rails, which meant it wasn't being picked up inside
source.ruby.rails.meta.rails.unit_test or
source.ruby.rails.meta.rails.functional_test.
I solved this problem by adding:
{ include = 'source.ruby.rails.shoulda'; },
to those definitions within the Rails bundle.
However I feel dirty. First, because I'm hacking the Rails bundle to
make another bundle work. This seems like it will make upgrading
complicated since I don't imagine there is any kind of granularity
with language updates. Secondly, it feels wrong for the Rails bundle
to define an include of a language that is descended from the Rails
bundle itself. Apparently TextMate handles this properly because it
works fine, but it was a red flag for me. So I guess my question is
am I doing this wrong? What do the bundle gurus have to say on the
matter?
--
Gabe da Silveira
http://darwinweb.net
The thing that caused the problem was -- "Edit each line in selection."
I was able to edit the file without any problem by just doing a search and
replace. I don't know specifically how edit each line in selection works,
but I suspect that it involves quite a few Allocs, Like one for each line,
possibly quite a few more for each line. I was just putting out a warning
that you shouldn't edit the entire file with "Edit each line in selection".
It could have just been my computer, but I suspect that I was abusing this
wonderful feature into something Allan didn't imagine it to be used to do,
because as an expert in line management he would never have gone down the
path I did. I was just appending ",END_NOTE" to each line.
This happened on a Dual Xeon Core 2 Duo Mac Pro with 1GB of ram ( inherited
from our graphics guy who doesn't want to learn FCP).
In my html files I use root-relative paths such as:
<link rel="stylesheet" href="/css/screen.css" type="text/css" />
The Web Preview does not work even though the path is also relative to
the top level of the project, I have to use paths relative to the
current document.
<link rel="stylesheet" href="css/screen.css" type="text/css" />
Is there some way to get Web Preview to work with root-relative paths
for html development?
-Gianni
Hi. Some questions w.r.t. getting themes to work as I prefer:
Firstly, the manual says [1] that "markup.heading.2.html" can be used
in a language grammar. And then subsequently one may use that as a
selector in a Theme. I have tried to use the mentioned selector in a
theme made entirely from scratch, but whatever color I add for that
selector, nothing happens to the styling of the <h2> tags or anything.
Do I need to update the language grammar for HTML in order to get it to
work or what?
Secondly, Brilliance Black seems to be one of the richest themes
arround, with colors for many languages. It has a HTML section. And
below that it has a "markup" section. The markup selection has e.g.
"markup.heading" and "markup.bold". I assumed that "markup.bold" would
turn <b>text/</b> into bold face. But, no - doesn't happen. I have
misunderstood something?
Thirdly: Ideally, what I would like to see was a theme were the /text/
changed styling, more than the tags/code around the text. But TextMate
appears to only be able to have one color for text, namely that of the
"Foreground" color. Am I right? I hope not. Put on an edge, I would much
rather have a permant color for tags etc, but differing colors for text,
depending of the context. Can TextMate do this? Or may I just forget it
at once?
(I have used TextMate for a 2-3 years, but I only used the installed
themes. And there are many things with it that I have not taken
advantage of.)
[1] http://manual.macromates.com/en/language_grammars
Best regards,
Leif Halvard Silli,
Oslo
Greetings TextMate mailing list.
Forgive me if this is child's play, i searched the list archives
thoroughly before posting.
I am trying (for many hours now) to open a .nib file created in
Interface Builder using the "$DIALOG" command from a shell script. My
general objective is identical to the screencast Allan created in 2006
(http://tinyurl.com/df3m9r).
- Open a .nib file
- Wait for user to close nib or hit a ok button
- pass default parameters to the .nib
- capture user input from the .nib to be used later in the .sh file.
Currently i am trying to accomplish this with:
"$DIALOG" nib --load ~/Desktop/Test2.nib --center --model '{ classPath
= "foo"; }' --parameters '{}'
That usually opens the .nib window, when i close the window all i get
is an integer.
Then it usually stops working all together, no matter how many time i
try and execute the line of code (control - R) nothing happens, i have
tried what Allan suggests in the post "So either press ⌃D to
“close” stdin, or give -p '{}' as argument, and things should work
as expected." And i cant get it to work, if i trash TextMate prefs and
reinstall, it works for a bit more.
I am not yet as familiar with Ruby as i would like to be and i have an
immediate need to implement this within an existing bundle using
shell. The screencast made it look so nice and easy...
Best,
</matthew>
-------------------------------------------
Matthew Richmond, Principal/Designer
The Chopping Block, Inc.
481 Broadway, 3rd Floor, New York, NY 10013
p 212.463.7574
f 917.591.7584
http://choppingblock.comhttp://chopshopstore.com
-------------------------------------------
World Domination Through Graphic Design
-------------------------------------------
Hi,
last time I asked, this wasn't possible and I did not follow the latest
development. So here's my question again:
I have a custom html/php dialect. It contains of regions of code that
is either html markup or php code.
<php>...</php>
and
<htm>...</htm>
Inside a php region, you can use <htm> and inside a markup
region, you can use <php> which leads to recursive a structure
that is very helpful for programming (at least for me) but
harder to colorize, fold or autocomplete correctly.
More complex example (outmost default is html markup):
<html>
<head>
<php>
echo convert($title);
</php>
<style> ..... </style>
</head>
<php> init(); </php>
<body>
Result:
<php>
if($someflag)
<htm>
<table border="0">
<php>
foreach $row ($rows)
{
<htm><tr><td></htm>
echo $row;
<htm></td></tr></htm>
}
</php>
</table>
</htm>
</php>
</body>
</html>
Can I customize Textmate so its html and php modules identify my
regions?
/Andreas Pardeike
Hello,
I'm trying to enhance the Matlab bundle. Especially by trying to make
matlab and texmate to interact (shortcut to launch a script etc...).
And I must say I'm pretty bad with shell scripts and regular
expressions.
I've nevertheless managed to do that, and now I'm trying to recreate
matlab "cell mode" : matlab source files are scripts, and it is
possible to divide the script in "cells". When you are in the (awful)
matlab editor, you can run the current cell just with cmd+enter. This
is very useful. The problem is that the cell separator is just a line
like this :
%% Title of the new cell
...That's it, there is no ending marker for a cell : the current cell
ends where the new one starts ! What I've done now is creating a new
"cell" scope delimited by these lines, but as soon as one "%% ...."
line is used to mark the end of a scope, it can't be used to start the
following one.
Here's my descriptor.
contentName = 'meta.cell.matlab';
begin = '%%.*$\n';
end = '%%.*$\n';
captures = { 0 = { name = 'meta.celltitle.matlab'; }; };
patterns = (
# Here I include all the other scope descriptors, because they can
be contained in a cell !
)
For my solution to work, I then have to use two of these "%% ..."
lines, one to end the previous cell scope, and one to start the new
one. This means matlab files need to be modified to work, which is not
so good !
Do you have an idea on how to solve this problem ?
A linked problem (but less important) is that I can't get code folding
to work with cells : a start marker can't be the same as an end marker.
Thank you !
Hello,
When accessing various bundle features I get (LoadErrors).
This is on 10.3.9 using 1.5.7 (1436). On 10.4.9 same version, no errors.
First question, is this version 10.3.9 functional. I could not find anything in
the notes or on the site.
If this is not a 10.3 issue then these are the errors I have been receiving:
This is the Error I get issue php-help:
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/web_preview.rb:1:in
`require': No such file to load -- erb (LoadError) from
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/web_preview.rb:1
env: ruby -wKU: No such file or directory
I also the this error when issue html tidy:
env: ruby -wKU: No such file or directory
I get both the above from numerous commands.
I searched the thread, and based upon what I can find, I believe my environment
variables are correct.
One guess is an issue with this could be a result of an older Ruby install:
10.3.9 uses Ruby ver. 1.6.8; 10.4.9 uses 1.8.2.
One post referenced a ruby test:
feed these lines to Terminal do you see this output?
=====
$ /usr/bin/ruby -r erb -e 'p url_encode("a test")'
-e:1: undefined method `url_encode' for main:Object (NoMethodError)
$ /usr/bin/ruby -r cgi -e 'p CGI.escape("a test")'
"a+test"
my results:
$ /usr/bin/ruby -r erb -e 'p url_encode("a test")'
/usr/bin/ruby: No such file to load -- erb (LoadError)
But the suggestion confused me.
Suggestions?
Thank You,
dmp
Another example of something to avoid, aka things textMate really wasn't
designed for.
-- Open a large file (mine was > 7000 lines)
-- Select the entire file
-- Edit each line in selection
-- start typing.
This brought the computer to its knees.
My bad. Just thought y'all could have a laugh at my expense.
There are, of course, at least a dozen other ways to do what I started to
do: Filter through command, Command, Search and replace ( $ with
[replacement value]), etc
Tschuss,
Brad Tittle
Tech Support
I'm using git to keep different versions and branches of my projects
in repositories. Unfortunately, Project Plus does not properly
recognize files that git watches as well as the status of files that
it (correctly) recognizes as part of my git repository.
I am using `freely' managed projects, i. e. those you can create via
File > New Project and drag files into. I do not (want to) drag my
whole project folder onto the TextMate icon. If I do that, Project
Plus correctly labels the status of my files (part of repository or
not, modified or not modified). The problem is not just cosmetic, I've
discovered that files which Project Plus does not properly recognize
are not part of commits!
The solution is that you need to move the location of a file (e. g. by
reshuffling or so), then, apparently, Project Plus updates the
properties of all files.
Is this a known problem?
Max
Thanks, Allan, for both the replies.
> I?d argue that ?name? is meta data for the ?content? with the agreed
> upon convention that it uses a format like ??title?[.?type?]? ? a
> resource fork is just another piece of content meta data which is very
> fragile since it won?t survive a lot of the mechanisms used to
> transfer content (unlike the name), so there is little reason trying
> to split up the name into ?title? and ?type? and then store the ?type?
> in a new meta data field.
I agree completely about the resource fork. I'm afraid my comment was
confusing and it seemed like I longed for the days of resource forks
getting lost when you transferred files across platforms. (I'd be just
as happy to be rid of the extension.)
And I filed my first bug report with Apple.
> Make a column selection of the desired width (and with desired indent)
> then hit ?Q and TM will reflow the paragraph to be ?in a box?.
Doh! I knew that and had forgotten it. I feel like such a punk now.
(I'd still like to automate the process, but I want to try to do it
myself.)
Hello, how in TM when I have a few windows open can I get them into a
unified window with tabs? These are usually remote files opened over
ssh in Interarchy.
--
Scott * If you contact me off list replace talklists@ with scott@ *
I am starting to use cmd-Shift-R a lot more to run code through TM in
it's window. Very nice. For quick one off shell scripts I am finding
it invaluable.
I have a few issues. There are more times for me where I am working
in php and I want the output to be html'ized. I see a raw <br /> over
a rendered one. I end up putting in a lot of \n's and such to get
somewhat readable.
Is there any way to toggle the mode on how it deals with this?
Second is control-H, which I use a lot to get to docs in php, this is
suer handy, and I bet it uses webkit to do it's secret little deed.
However, One function may lead me to another, as there are links in
the window. But there is no back button. Is there any way to get
more standard browser buttons in this window? Or heck, I would be
happy to have it just use Safari.
The TM pop up seems to always be set to sort of work like
target="_blank" and spawn a new window, which clutters me up some, and
I end up with 20 windows hiding around. I would like control-h to
replace windows.
Thanks
--
Scott * If you contact me off list replace talklists@ with scott@ *
As the subject line begins: git from the Bundle menu works (as does
working from the CLI), but CTRL+SHIFT+G... gives me the following tool
tip pop-up:
/tmp/temp_testmate.AQcVtg:26:in `open': No such file or directory -
pages (Errno::ENOENT)
from /tmp/temp_testmate.AQcVtg:26:in `entries'
from /tmp/temp_testmate.AQcVtg:26
"AQcVtg" above is variable. Everything else remains the same.
The short version of my question is: what's wrong and how do I fix it?
TM has made me a lazy man, reliant upon keyboard shortcuts. Please
save me from using the pull-down menu.
john
#!/usr/bin/ruby -w
require "#{ENV['TM_SUPPORT_PATH']}/lib/setuplibs"
require 'svn_diff_directory'
require 'shellwords'
#require 'exit_codes'
def get_dirs()
dirs = []
if ENV['TM_SELECTED_FILES']
dirs = Shellwords.shellwords(ENV['TM_SELECTED_FILES']).delete_if
{ |file|
(! File.directory?(file)) or (! File.directory?(file+'/.svn'))
}
end
if dirs.empty? and ENV['TM_PROJECT_DIRECTORY']
dirs = [ENV['TM_PROJECT_DIRECTORY']].delete_if { |file|
(! File.directory?(file)) or (! File.directory?(file+'/.svn'))
}
end
if dirs.empty?
TextMate.exit_show_tool_tip "Neither the selected directories nor
the Project directory are versioned"
end
dirs
end
STDOUT.sync = true
dirs = get_dirs()
dirs.each() { |d|
Dir.chdir(d)
svn = ENV['TM_SVN']? ENV['TM_SVN']:'svn'
puts `#{svn} diff -r 1 .`
}
This script is supposed to generate a full svn diff for the currently
selected directory.
However, it generates no output.
I've set input to none, and output to new document
------------------------------------------------------
"Home is not where you are born, but where your heart finds peace" -
Tommy Nordgren, "The dying old crone"
tommy.nordgren(a)comhem.se
Hello all. I'm trying to figure out a way to write a command that will
take a selected block of soft-wrapped text, hard-wrap it to a given
length, and then indent a given number of spaces. I do a lot of
writing using Markdown, and I would like to find a way to make
bulleted lists more clearly marked as such while in plain text mode.
None of the current options under the TEXT menu do what I want. I
don't need the command to ask for the wrap length or the spaces to be
indented, I'm happy to adjust that within the command itself -- once I
get what I want, I won't fool with it for months if not years.
If someone could even point me in the right direction, I'd be happy to
try to hack at something on my own, but I honestly don't know where to
start.
john
--
John Laudun
laudun(a)louisiana.edu
http://johnlaudun.org/
Twitter/Facebook/Flickr: johnlaudun
Sometimes I would like to make a substitution/search or whatever only on a
part of the file, but textmate doens't bother too much if I select
something, neither there are options to do it.
I'm sure there is a way to do it, any help?
--
View this message in context: http://www.nabble.com/Substitute-only-here%21-tp22914227p22914227.html
Sent from the textmate users mailing list archive at Nabble.com.
In Bill's defense, I have long had this problem with the Finder. If I
create a file in Textmate but assign it no extension, a blank document
icon is assigned the file and the default application -- no matter how
hard you try to change it through the Finder -- to open the file is
always TextEdit.
As many people have pointed out, this is indeed a Finder problem, but
it makes it no less frustrating for users who do not wish to have
extensions on text files. (In the old days, wasn't that what the
resource fork was for? And wasn't the promise of the modern OSes to
dispense with the file extension system?)
john
Greetings to everyone,
How is it possible to compile a small program via short-cut. Until now
I've used apple-cmd+R (RUN/Compile via xCode) in my .m files
(objective-c). Via command usually I do something like this:
Angel:Fraction atma$ ls
Fraction.h Fraction.m main.m
Angel:Fraction atma$ gcc Fraction.m main.m -o Fraction -l objc
Angel:Fraction atma$ ./Fraction
5 / 10 = 0.5
0 / 0 = 0
Angel:Fraction atma$
Best regards & thanks in advance
Panagiotis (atma) Atmatzidis
email: atma(a)convalesco.org
URL: http://www.convalesco.org
--
The wise man said: "Never argue with an idiot. They bring you down to
their level and beat you with experience."
Guys,
Which screen recording software do you usually use to record TextMate
screen casts?
Best regards,
Mathieu
___________________________________________
Mathieu Godart
Skype: mathieu_godart
MSN: mathieu_godart(a)hotmail.com
ASIC Integration Manager
Coolsand Technologies
___________________________________________
I'm glad to see I'm not the only one trying to do this and
encountering this issue.
Unfortunately, your solution didn't work for me. I was able to install
the older port okay, and `port installed` shows that I have in fact
installed screen 4.0.3_1, and `which screen` shows that I'm running
the binary that I expect to be running, but still I get "mate: failed
to establish connection with TextMate."
Any ideas?
Thanks in advance,
Brian
Hi,
when I want open a file from within TM I mostly want to open a file in
the vicinity of the current file.
So is there a way to have the open file dialog open with the directory
of the current file displayed.
adi
Well I rewrote my little script in Ruby and have had mostly success,
but I need some help escaping things properly. Here's what I'm having
trouble with:
#!/usr/bin/env ruby
arg = STDIN.read
arg.chomp!
arg.gsub!('\\', '\\\')
arg.gsub!("\'", '\\\'')
arg.gsub!("\"","\\\"")
arg.gsub!('\`', '\\\`')
system("pointfree \""+arg+"\"")
This is intended to enclose text selected in TextMate in quotation
marks, and then escape all of the following characters within the the
quotes, and then use that as the argument to pointfree. What's wrong
with how I'm doing it?
Sorry for all of the questions,
Ian
I've just started using Textmate and know very little about it, I was
wondering why the svn-commit.tmp, Regular Expression (Oniguruma), Regular
Expression (Python), Release Notes and Strings File are in the languages
list since they seem to do nothing.
They appeared after installing the Subversion bundle along with a few other
languages.
Thank you for your help.
http://www.nabble.com/file/p22995446/Cropped.png
--
View this message in context: http://www.nabble.com/Unknown-items-in-the-languages-list-tp22995446p229954…
Sent from the textmate users mailing list archive at Nabble.com.
I get the following error running a ruby program in Textmate, but it works
fine running it from the command line. The program creates a lot of strings,
and slightly reducing this just slightly makes the error go away.
I get this in Textmate
...
2 DATE 11 Jan 2001
at top level in 3 TIME 15 at line 56
1 RIN 13
but this on the command line (which is correct)
...
2 DATE 11 Jan 2001
3 TIME 15:56:49
1 RIN 13
Oddly, if I "puts s.reverse" in textmate, I get the right output too
(reversed of course:). I also don't get the error if I print to a file,
rather than printing to the Textmate output window (and I'm only printing
out a very short segment of text from the program).
s = f.to_gedcom
puts s #output window copy gives the error (before
File.open).
File.open('/tmp/xx.txt','w') { |fd| fd.print s } #file
copy is correct
puts s #output window copy gives the error (and also
after File.open)
So is there a heap or stack size issue running ruby from textmate? Any other
guesses at what is happening? It does it under Ruby 1.8.6 and Ruby 1.9.1.
--
View this message in context: http://www.nabble.com/Is-there-a-limited-heap-or-stack-for-running-ruby-in-…
Sent from the textmate users mailing list archive at Nabble.com.
Hey everyone,
I'm experiencing very annoying trouble out here. My font rendering is kind
of blurry when it comes to dark backgrounds. Here's a screenshot using
Swyphs II color theme. My rendering is on the top of the screenshot,
author's is at the bottom, after the red line.
http://berkana18.com/screen.jpg
Font smoothing in system perferences is set to 'Automatic', and i'm on
Leopard, 23" ACD.
Any ideas, anyone?
Thanks in Advance.
Aleksandr.
--
View this message in context: http://www.nabble.com/Font-is-blurry-on-dark-background.-tp22957411p2295741…
Sent from the textmate users mailing list archive at Nabble.com.
Dear all,
I'm doing a very simple test every morning and sometimes more often:
run SVN update on my work dir (let's call that command A) and then
update the tag index of this source code (let's call that command B).
And I wanted to create a macro to do that.
The problem is that the macro launches the command A and launches
command B without waiting the end of command A. Do you have an idea on
how to automatize this (long to run) task with a macro. I could
probably do that with a command, but it would be cheating.
Thanks.
Best regards,
Mathieu
___________________________________________
Mathieu Godart
Skype: mathieu_godart
MSN: mathieu_godart(a)hotmail.com
ASIC Integration Manager
Coolsand Technologies
___________________________________________
Hi folks,
In case anyone else is interested, I've just put together a command
that aligns comments in a block - a trivially modified version of
Chris Poirer's 'align assignments' script.
It fixes this:
imagecopy($image, $frame,
($x=max($width-$this->topRightCap[kCapWidth], $this-
>topLeftCap[kCapWidth])), // Destination x
0, // Destination y
$x, // Source x
0, // Source y
min($this->topRightCap[kCapWidth], $width-$this-
>topLeftCap[kCapWidth]), // Source width
$this->topRightCap[kCapHeight]); // Source height
Ctrl-Option-Command-/, then:
imagecopy($image, $frame,
($x=max($width-$this->topRightCap[kCapWidth], $this-
>topLeftCap[kCapWidth])), // Destination x
0
, // Destination
y
$
x
, // Source
x
0
, // Source
y
min($this->topRightCap[kCapWidth], $width-$this-
>topLeftCap[kCapWidth]), // Source width
$this-
>
topRightCap
[kCapHeight]); // Source
height
More info & download at http://michael.tyson.id.au/2009/03/27/align-comments-in-textmate/
Cheers,
Michael
--
Michael Tyson | michael.tyson.id.au
m: (+61) 0407 754 124
e: michael(a)tyson.id.au
aim: mikerusselltyson
twitter: MichaelTyson
Hello,
Is it possible do always highlight brackets/parentheses of the code block,
where my caret currently is?
I'd like to have the ability to always see what block I'm at, not only when
moving caret near the closing bracket. And is it possible to change the
color of the highlight? I may not be a square around that bracket, the
bracket itself can go bold and different color.
Does anybody know, how to do that, if possible?
Thanks.
--
View this message in context: http://www.nabble.com/Always-highlight-brackets-parentheses-of-the-code-blo…
Sent from the textmate users mailing list archive at Nabble.com.
Hi TextMate users!
I'm using LaTeX with TextMate. Is it possible to get the Acrobat Reader in the "View in:"-selection in LaTeX Preferences? Where can I set this?
Thanks and regards!
I'm experiencing slowness when I use the number keys 1-9 (not 0). There's a
full second's delay from pressing a number to having it appear in the file
that I'm editing. Interestingly the problem also exists when changing using
Apple+Number keyboard shortcut to change between open file tabs. The problem
only occurs in projects.
Is anyone else having this problem? Any suggestions on a solution would be
greatly appreciated.
I'm using OS X 10.4.11 and I have the ProjectPlus plug-in installed.
--
View this message in context: http://www.nabble.com/Number-keys-slow-tp22668585p22668585.html
Sent from the textmate users mailing list archive at Nabble.com.
I had earlier asked a question about how to have the textmate editor
highlight the footnotes in my latex document. Link:
http://www.nabble.com/Highlighting-in-Textmate---Latex-to20379168.html#a203…
I had two very good responses to that question about how to find the scope
and how to modify the preferences. For footnotes, the scope was
meta.footnote.latex
Now I am using a package called "changes" in latex, which defines commands
like \added, \deleted and so on for tracking changes. I want to highlight
anything that appears in the braces in \added{}. Using the method suggested
in the above post I found the scope as meta.group.braces.tex. But this scope
is common to many other pair of braces (for example, subscripts,
superscripts, \vspace{} etc.) and it highlights all those too. How can I
have the editor just highlight something that appears between \added{}.
Thanks very much.
--
View this message in context: http://www.nabble.com/Custom-highlighting-in-latex-tp22727134p22727134.html
Sent from the textmate users mailing list archive at Nabble.com.
How can I escape certain chars in a selection in TM? If this is not
built in, can someone help me make a macro or equivalent to do so?
Example:
echo "<a href="untitled.html" id="name" class="name"
target="_self">test</a>";
I would select the entire line, it would be smart enough to know the
language from the string.
echo "<a href=\"untitled.html\" id=\"name\" class=\"name\" target=
\"_self\">test</a>";
I have a feeling there is probably something built in that can help
me, but I am just not finding it.
--
Scott * If you contact me off list replace talklists@ with scott@ *
It would be useful with a command "Diff selected directory with
Version ...",
that would generate a diff for ALL versioned files in selected
directory.
-----------------------------------
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
I'm newly coming back to the Mac after a long hiatus (late 1980's as a
developer); been Windows in the interim.
I still have to work periodically in Windows boxes and am somewhat forlorn
at the layout of the navigation keys on the Mac (as in most laptops). This
is where VI shines; the navigation can be accomplished in the "center" of
the keyboard where key layouts are consistent. David Wooten maps a single
key (http://lists.macromates.com/textmate/2006-January/007683.html) and Kirk
Fitzpatrick was attempting a plugin (
http://lists.macromates.com/textmate-plugins/2007-January/000022.html).
Anyone figure out anything like what VI has or have any ideas? I'm
considering building something that intercepts keystrokes right out of the
operating system so that TextMate has to know very little.
Thanks in advance,
--
Scott Smith - Old Fart Developer
With privilege comes responsibility,
with responsibility comes accountability,
with accountability comes honesty,
with honesty comes faithfulness.
I started a project I call "ropen", which is like OS X's "open" or
TextMate's "mate" commands, but works remotely by automatically
mounting the remote filesystem locally using MacFuse's sshfs:
http://github.com/tlrobinson/ropen/tree/master
It works quite well, except when you try to open a large directory
tree in TextMate. It seems like TextMate is trying to walk the entire
tree immediately when it's opened. Doing this over the network is very
slow and ends up hanging TextMate for moderately sized directory trees.
Is there any possibility of changing the behavior to lazily do
whatever initialization TextMate needs to do when opening directories?
Thanks,
Tom
I have seen others do this, I can not find any docs on it.
In php, I have seen someone type in array_keys() and somehow, they are
able, in that completion, or at a later time, get it to insert the
template arguments: array_keys ( array $input [, mixed $search_value
[, bool $strict= false]] )
--
Scott * If you contact me off list replace talklists@ with scott@ *
Howdy!
I would like to use TextMate for C/C++, but I have no idea how to set up. So what do I have to do to get this simple code working?
#include <stdio.h>
int main()
{
prinft("hello world");
return 0;
}
Thanks a lot!
This qualifies as "Well, if you don't like kicking yourself in the nose,
why don't you stop doing it?" kind of suggestion.
When I open a network drive location and double click on the folder, it
opens.
Yes, if I just click on it and then click on the sub folder I really want it
works exactly as it is supposed to.
This isn't a bug. This is just me telling the world that I am incapable of
instantly changing the way I use my flippin mouse. The real answer lies in
doing a bunch of other things correctly, I just haven't started doing them
that way yet.
The only bug here is that because i double clicked on a large directory,
textMate basically locks up (because it is processing a lot of files over a
network connection and even though all CS guys are constantly trying to
avoid N^2, it keeps coming back to bite us!).
Anyone ever try to open a large spreadsheet (say anything over 6,000 rows)
in Numbers. NOT A FUN thing.
--
Brad Tittle
Tech Support
Hello All,
I believe I have found a bug in the syntax highlighting for shell
scripts. When I have a comment in a case statement and the comment
does not get highlighted correctly. Here is the text for my case
statement:
#first figure out what platform you are in, based on the uname -rs
KERNELVERSION=`uname -rs`
case $KERNELVERSION in
#linux returns "Linux kernelversionnumber"
Linux* )
OSTYPE="linux";;
#freeBSD returns "freeBSD releaseversion"
*BSD* )
OSTYPE="bsd";;
#osX returns "Darwin kernelversionnumber"
Darwin* )
OSTYPE="macos";;
#everything else
* )
OSTYPE="unknown";;
esac
also here is a link to a picture of what I am seeing on my screen: http://farm4.static.flickr.com/3575/3410707546_d7a2a67e49_o.png
Im not sure if this is even helpful but pastebins highlighting seems
to do the same as textmate but quickhighlighter.com seems to get it
correctly(what I assume is correct).
Thanks for your help.
--Colin
When I edit a Template it stops working even when I edit just one tiny letter
in an out-commented text.
I do the following:
in the 'bundle editor' I expand the 'Project' Template and then I select the
'Project.as'. Here I placed the opening curly braces to be at the same line
as the function (and not at the next line).
public function ${TM_NEW_FILE_BASENAME}() {
When I close the window and try to make a new project from template nothing
happens.
Even when I revert my changes it won't work anymore, I have to reinstall the
whole bundle!
As said I also tried just to change a tiny letter in outcommented section of
_create_as3_project.sh with the same result.
What is the proper way of editing a Template?
--
View this message in context: http://www.nabble.com/How-to-edit-Actionscript3-Templates--tp22677253p22677…
Sent from the textmate users mailing list archive at Nabble.com.
I use the Makefile bundle on my desktop and never had any issues so I when I
put it on my laptop I was a little puzzled when running Build produced this
output:
env: ruby\r\rrequire: No such file or directory
Ruby is most definitely in TM's path, and checking the path from within TM
on both machines shows that they are exactly the same. Both machines are
running Leopard with the same version of ruby, same gems, and same version
of TM installed.
Any assistance is greatly appreciated.
Thanks,
Brian
Hello, I just started using command-R to refresh in running browsers.
I find it only refreshes the front most browser window. Is this normal?
I seem to be fighting this behavior, though command-R is so handy I
want to use it. Perhaps it could be modified to work better.
If I have a few windows, and a few tabs, move to TM, command-R, it
will switch to Safari in this case, and refresh whatever is the front
most window and tab within that window. I now have to remember to
bring the window forward that has the result of the code I am working
on to the foreground.
I think for me, a better behavior would be for command-R to spawn a
new browser window, with the code ran in that window. I can then
close the window, and be back in TM. This way, my window is always
going to be the one used.
Has anyone else found this mildly annoying and looked for a solution?
I can always go back to the command-tab to the window I want method,
and press reload in the browser.
I have tried the command-shift-R method, but I have a feeling that
since I am working on remote files through a ftp/ssh app, it is not
going to work. It also does not interpret html, and shows me the raw
html code, so that method seems more designed for cli type scripts, or
code that does not end up outputting to a browser.
Thanks for any workflow suggestions
--
Scott * If you contact me off list replace talklists@ with scott@ *
Hello, I found a .tmMacro file someone put up, it will allow me to
remove trailing spaces and tabs on save. Works nice, for one flaw.
If I have any text selected, that selected text is replaces with what
seems to be the contents of the entire file.
I can not figure out how to even edit the .tmMacto once installed. I
can put the cursor in the bundle editor area, but it will not allow
any chances.
I can not open the .tmMacro file in TM, so I could use the shell, but
that seems strange, and it is a plist, and not entirely sure what to
edit.
The Macro has two commands
executeCommandWithOptions
{
beforeRunningCommand = nop;
command = "perl -pe 's/[\\t ]+$//g'";
input = document;
output = replaceSelectedText;
}
executeCommandWithOptions
{
beforeRunningCommand = saveActiveFile;
input = none;
output = discard;
}
* I can sort of hack this out on my own by making a empty command,
then recording a macro to and hooking those two together. The above
seems cleaner though.
Any ideas what I should edit? The perl seems fine, a direct copy from
the TM built in to remove spaces and tabs, maybe the output =
replaceSelectedText; needs changing?
--
Scott * If you contact me off list replace talklists@ with scott@ *
Hi all,
I am new to textmate and Java/Python programming. When I run my code
with the textmate run command, there seems to be a problem with the
order of output in html. This problem seems not to be bundle specific
(both Java and Python bundle show the same problem) so I guess it is
in the underlying executor script.
The bundles and support dir are fresh SVN checkouts.
Example code: guess.py
import random
secret = random.randint(1, 99)
guess = 0
i = 0
while guess != secret:
guess = input("Make a guess (0 to quit): ")
if guess == 0:
print "Program quit"
break
elif guess > secret:
print "to big"
elif guess < secret:
print "to small"
i = i + 1
else:
print "Congratulations, you guessed right after",i ,"tries."
Example output: order is: prompt -> program output -> input
Make a guess (0 to quit): to small
1
Make a guess (0 to quit): to small
2
Make a guess (0 to quit): to small
3
Make a guess (0 to quit): to small
4
Make a guess (0 to quit):
Output order should be: prompt -> input -> program output
I'd like to use textmate in my cs cources starting soon and it would
be great if the html output had the right order, so I can hand it out
to the teacher as a proof for my working code. At the moment this
would be rather confusing and lead to some discussions I guess.
This really just happened to me. Really. I know I produced some April Fools
jokes yesterday, but that was yesterday. This is real.
I created this Ruby script in TextMate:
s = "wackamole"
puts s
I ran it, and the RubyMate output window displayed:
woe
Weird, eh? And it is part of a longer story; the string "wag wag" was being
displayed as "w w", and the string "ruff ruff" was being displayed as empty.
(Never mind why I was testing those strings.)
I quit TextMate, restarted my computer, and everything is back to normal.
But would anyone like to suggest a cause for what happened? Cosmic rays?
Belated April Fools day easter-egg-type joke?? The conficker virus??? Has
anyone else ever seen anything like this? m.
PS The problem was presumably with TextMate, not with ruby, because using
the Terminal to run the same script (as a saved text file) using the "ruby"
command worked just fine.
--
matt neuburg, phd = matt(a)tidbits.com, <http://www.tidbits.com/matt/>
A fool + a tool + an autorelease pool = cool!
AppleScript: the Definitive Guide - Second Edition!
http://www.tidbits.com/matt/default.html#applescriptthings
Hello, I find that TM has too many keyboard shortcuts for my brain to
be able to retain and be useful to me. I have developed a habit that
I use in all apps, which is to use apple help, command-Shift-? will
bring up the help menu in the app. I can type a few words, and it
will show me the menu item I need. Return and it is executed. Or I
can traverse the real menu structure.
I use this in all apps, it is handy to me.
TM apparently crashes a lot when I do this.
I am now looking to use the "Select Bundle Item", but it is too
aggressive about what it finds. Enter in the single letter "E" and it
finds all bundle items that contain a singe E. I am looking to limit
it to contains characters of at least three characters for a match.
In the help search method, if I type "br" it brings up 6 items to pick
from. In the "Select Bundle Item" it beings up about 25 or so.
Any suggestions? Over time, I am sure this is going to force me to
learn more of these, but the apple help method was gread for those one
time uses where you will not use the command again for a long time.
It also goes beyond the bundle items, and I could toggle freehand edit
mode, for example, something I rarely do, and just do not want to
bother committing to memory.
--
Scott * If you contact me off list replace talklists@ with scott@ *
Hello,
I'm working on a "matlab console" bundle, à la "R console bundle". The
goal is to emulate a matlab console in a textmate window, which is
much more practical than the terminal to edit long commands. This is
so far working quite well, running matlab in the background and
sending/receiving messages via text files.
However, when I have a matlab script opened in a textmate window, I
want to be able to execute it in the textmate window where the matlab
console lies. I thought of doing that with applescript, but the
dictionary of textmate seems pretty poor, there is no way of handling
tabs for example.
So what I want to be able to do is a run a command from a window that
write its results in a different textmate window or tab (which has a
specific name, something like "Console.Mcon"). Is this possible ? and
how ?
Thanks
Pierre
Hello,
With the actual code of LateXCommandCompletions.rb, it's impossible
to use
"alt esc" in a general context ( other than \ref{} or \cite{} )
example
\documentclass{article}
\begin{document}
\input{essai}
\in .... alt esc nothing !
\end{document}
I need to add fileExt = "" at the beginning of the file
LateXCommandCompletions.rb
But I lost LateXCommandCompletions.rb after the recent update 1.5.8
and today after the install of GetBundles and an update of the Latex
Bundle.
I would like to know if my solution is fine and how to manage my files
to avoid problem after any updates
Thanks
Best Regards
Alain Matthes
I have made a new html snippet called "href", it works, and shows up
as Bundles -> html -> href
I would rather it be in Bundles -> html -> insert tag -> href
How can I move this item?
--
Scott * If you contact me off list replace talklists@ with scott@ *
Hi everyone,
I need to bring some XML files (CellML) into textmate; problem is that
the formatting is all on one line without wrapping/indents.
Is there any way to get textmate to automatically format the one line,
and auto-indent it?
Thanks in advance,
MP
I am very intrigued by the TM SQL features, namely, running a
arbitrary SQL command in the editor, as well as the browser. So far,
reading the help, I see I have a small connection window in which I
can enter in the usual host, user, pass, and database name.
The trouble is, I do not want to open my databases up to remote
connections. Almost always they are allowed access from localhost.
Most ISP's are not going to allow access from some other host as well,
not to mention, if you do not have a static IP, you are going to be a
moving target anyway.
What are my options at this point? I have a ssh/ftp/sftp type
connection in which TM is opened against it, and I can save right back
to the server. The sql stuff happens locally on the server.
Any way to integrate that type of connection with TM's sql tools?
--
Scott * If you contact me off list replace talklists@ with scott@ *
Why do I sometimes get xcode messages when using cmd R to run ruby code? If I
click somewhere else in the document and then use cmd R, then it usually
runs the code in the file without the xcode error.
Right now though, nothing I do is working. I'm getting
xcodebuild: Error: the directory /Users/xxxx/Desktop does not contain an
Xcode project.
every time I try cmd R.
--
View this message in context: http://www.nabble.com/xcode-message-when-running-ruby-tp22820086p22820086.h…
Sent from the textmate users mailing list archive at Nabble.com.
One last question for tonight. ;-)
According to the doc, the environment variable TM_PROJECT_DIRECTORY
may not be set. But in which cases? The doc is not very precise on
that point.
Thanks.
Best regards,
Mathieu
___________________________________________
Mathieu Godart
Skype: mathieu_godart
MSN: mathieu_godart(a)hotmail.com
ASIC Integration Manager
Coolsand Technologies
___________________________________________
Greetings!
I have been using TextMate for nearly three years. I just recently switched
jobs and purchased a new MacBook. I've been using the 30 day trial for about
a week - planning to purchase my key soon.
Despite using TextMate with PHP for so long, I haven't ever used the PHP
bundle.
This evening I downloaded it - tested it for a while - but found it to make
TextMate very unstable. I'd select the bundles menu to try out each PHP
bundle, but every second or third time the app would freeze for a few
seconds, then crash.
My console indicated: 'unrecognized selector sent to instance 0x15c29800'
right before the crash.
I tried removing textmate and deleting the php.tmbundle from
/library/application support/textmate/bundles/ then i reinstalled textmate
and tried everything again - same result.
So, I removed it for the second time (and also the bundle in
/library/application support/textmate/bundles/) -
Now, when looking at my console and working on a php file, I see many
instances of "didn't find rule named source.php" -
This ticket: http://ticket.macromates.com/show?ticket_id=8D6BF285 concludes
that "That error indicates that you deleted or disabled the PHP bundle and
are working with HTML files (with embedded PHP)."
I really liked the php bundle, but I'd hate to turn an 'always stable' app
to 'incredibly unstable' ... so, I'd be satisfied with relying on my own
snippets... but I am concerned with the error that I am still getting in my
console.
Is there anything I can do to completely remove that bundle?
I don't want to purchase a key until I get this issue worked out. I'm not
sure how to proceed, so any help would be greatly appreciated.
Thanks!
Alex
dear all,
I've had some problem making up a clear subject line and stil am in
doubt whether I've succeded. What I'm trying to achieve is the
following.
My documents have often various tables and charts embedded via the
\input{table_file}
command.
While explaining my tables/charts I'm mentioning actual numbers in my
text. Is it somehow possible to create a list of numbers in my latex
document and have them called via a reference in my text? This would
enable me to run a somewhat related scenario in my numbers and udpate
both my tables with numbers and have all numbers changed in the text
as well.
I was thinking this should be possible while using \labels, \ref but
for the moment can't stretch my mind to find a solution.
Thanks for any reply,
Gert
Hello, I use DropBox to sync files on more than one machine. Can I
symblink the TM app support dirs to DropBox and use it to sync that
data to more than one machine?
DropBox does not support rsrc forks, so that seems to be the limiting
factor.
--
Scott
* If you contact me off list replace talklists@ with scott@ *
Hi,
I just switched to Textmate to write my R scripts and I admit outright
there are many features of Textmate that I do not master yet. I am
confident I'll enjoy this new environment to write my R scripts.
I have a small problem though. I was looking forward to the ability to
send lines or the selection to R.app without doing cut and paste, as I
used to do with my other text editor.
But when I do this using the R bundle's "shift-option-command-R"
keyboard shortcut (or using the command from the Bundle's menu), my
selection is preceded by a setwd() to the folder where my script
resides. Except that often my working directory was set at the
beginning of my script to be elsewhere than where the script resides.
I am curious: why was this considered advantageous in the first place?
And second, can it be disabled (and how)? Also, can one change the
keyboard shortcuts? I do not use R from Terminal, so I'd like to
switch the keyboard equivalent to something that is less demanding on
my fingers, say control-R or command-R.
Thanks in advance,
Denis Chabot
On Mar 29, 2009, at 5:00 AM, textmate-request(a)lists.macromates.com
wrote:
> On the other hand one should ask why one needs the behaviour you
> mentioned. One can do this also in a doc associated to Rdaemon.
> Remember the Rdaemon doc is NOT a time-linear console, it's still an
> editor window, thus you can run code, go some lines back, run an other
> command, press ?Z for undo, correct the command, delete unused stuff,
> etc.
> In other words why are you using two windows?
> See: http://www.bibiko.de/TM_R_ex01.mov as na?ve example.
Thanks for the information and the example. As I say, maybe what I
need to do is learn a new way of thinking about how to use R
interactively while writing and testing code, rather than just
expecting the same kind of behavior as found in a different editor.
Kieran
Hi all,
Can the Rdaemon bundle can behave in a way that's similar to ESS in
Emacs (or as near as possible given that TextMate doesn't do split
windows and frames, etc). What I want is to have an R file open in one
window (associated with the R bundle) and an R session created under
Rdaemon open in a second window. I write R code in the R file and, as
needed, send chunks of it over to the R session where they are
executed. This is the standard way of working interactively with R in
Emacs/ESS. You can select code chunks and execute them in an R process
running inside a buffer. The code is echoed in the R session when you
send it over, together with any errors or output, etc.
In TextMate, I can have an R file open and an R session running in
Rdaemon, which is great. I can select code and use "Send Selection to
Rdaemon", but it works in the background (or rather, with a progress-
meter message box). The code executes properly, but it and its output
are not echoed in the open Rdaemon window. Once the code has been
executed I can step back through the code in the Rdaemon window using
the line-by-line code history. But what I want is to see code chunks
(and their output) inside the Rdaemon window as I go. Is this possible?
I realize it's somewhat unfair to ask TM/Rdaemon to behave just like
Emacs/ESS and yet still be TM. It's just that now that TM's LaTeX
bundle is so solid, having Rdaemon able to behave in this way would
mean I could stop using Emacs ...
Thanks,
Kieran
This might be a bug or a feature. But me and a friend of mine both have this
annoying "setting" that allows the caret to move to wherever i click the
mouse in TextMate. Even if I click an area after/outside my line of text.
The caret will also move to the right, just like I'm inserting spaces, if I
navigate with the arrow keys to the right. This wont actually insert spaces,
it just looks like it.
It looks like I'm using some "free caret position" setting, that I don't
want. Any ideas here?
Thanks in advance.
/Richard
--
View this message in context: http://www.nabble.com/Caret-moves-beyond-lines-of-texts.-tp22704552p2270455…
Sent from the textmate users mailing list archive at Nabble.com.
I am running Leopard and have set up a respository using some step by
step instructions in the command line.
I then open up my project in TextMate and want to commit my code to the
repository. It tells me that my code is not a working copy, so I say ok,
lets checkout. Then it asks me for svn+ssh:// something so I type in the
file path of the repository and a big error message thus...
"Status File
ssh: Could not resolve hostname Library: nodename nor servname provided,
or not known
svn: Connection closed unexpectedly
The file /Users/lucy/Sites/wed2/Repository does not exist."
Can someone point me in the direction of the right page in the manual
that explains how I should do this?
thanks
Lucy
Greetings. When using the 'Typeset and view PDF' command
in the LaTeX bundle, in conjuction with Skim as a viewer,
the character/word/line corresponding to the cursor's
position is selected in the pdf page. Does anyone know
if this is due to some option used inside the script, or
a standard behaviour of Skim? I find it quite annoying
and would like to prevent Skim from selecting anything
(the red dot is more than enough to show the position, for me).
Thanks in advance,
Piero
Is there a native way to do brace reformatting? I believe it is
called "cuddling". I often pull a function from here or there, and
the formatting is not to my liking...
function {
# code
}
versus
function
{
# code
}
--
Scott * If you contact me off list replace talklists@ with scott@ *
Anyone have any favorite Bundles for studying new code? I typically use a
combination of ctags / vim, but I was hoping that TextMate had some magic to
make things easier . . .
Let me know!
-Dave
Guys,
Do you know if someone ever tried to create a GDB integration in TM?
Would some of you be interested in something like that? I think it is
quite easy to do something which would look like "clewn" (http://clewn.sourceforge.net/doc.html
).
Best regards,
Mathieu
___________________________________________
Mathieu Godart
Skype: mathieu_godart
MSN: mathieu_godart(a)hotmail.com
ASIC Integration Manager
Coolsand Technologies
___________________________________________
Hi,
I would like to know how to remove trailing whitespace (spaces and
tabs) when saving a document.
I currently have the Text bundle item "Remove Trailing Spaces in
Document / Selection" associated with a keyboard shortcut, but that is
not an optimal solution
With kindest regards
Jonatan Andersson.
P.S BTW, "Hello, World"
I've made another patch to GetBundles that lets you set the
"FINDER_APP" env variable, so you can tell GetBundles to open w/ Path
Finder. If the var isn't set, it defaults back to Finder.
As an additional, unrelated suggestion, I find it much easier to parse
bundle update times if the full 4-digit year is displayed:
locCom += " date: " +
Time.parse(bundle['revision']).getutc.strftime("%Y-%m-%d %H:%M")
(Change the lowercase %y to the uppercase %Y.)
Thanks,
Adam Vandenberg
http://adamv.com/http://github.com/adamv/
I use PathFinder instead of Finder; when telling GetBundles to open
the highlighted bundle in TextMate, Finder pops open in the
background.
I edited getBundles.rb to use mate directly to open the bundle;
there's probably a reason to use Finder instead, but I figured I'd
advocate for doing it this way for us Path Finder users.
Patch attached.
Is there a way to force TextMate to open it's drawer on one side even if
there is not enough screen space? I just hate it on the left.
-Yëco
--
Jasson Cascante
Senior Interactive Engineer, Interactive Engineering
Roundbox Global : enterprise : technology : genius
------------------------------------------------------------------
Avenida 11 y Calle 7-9, Barrio Amón, San Jose, Costa Rica
tel: 404.567.5000 ext. 2151 | cel: +506 8810.9879 | fax: 678.623.0305
email: jasson.cascante(a)rbxglobal.com | www.rbxglobal.com
------------------------------------------------------------------
On Mon, Mar 23, 2009 at 2:39 PM, ollie saunders <oliver.saunders(a)gmail.com>
wrote:
>
> I'm experiencing slowness when I use the number keys 1-9 (not 0). There's
a
> full second's delay from pressing a number to having it appear in the file
> that I'm editing. Interestingly the problem also exists when changing
using
> Apple+Number keyboard shortcut to change between open file tabs. The
problem
> only occurs in projects.
>
> Is anyone else having this problem? Any suggestions on a solution would be
> greatly appreciated.
>
> I'm using OS X 10.4.11 and I have the ProjectPlus plug-in installed.
> --
> View this message in context:
http://www.nabble.com/Number-keys-slow-tp22668585p22668585.html
> Sent from the textmate users mailing list archive at Nabble.com.
>
>
> _______________________________________________
> textmate mailing list
> textmate(a)lists.macromates.com
> http://lists.macromates.com/listinfo/textmate
Howdy;
Finally getting around to tweaking some html snippets, and I'm stuck -
this is what I have:
<li id="${1}"><a href="#">$1</a></li>$2
what I'm trying to accomplish is (replacing the spaces with underscores and
making it all lowercase)
<li id="this_is_a_mixed_case_string_with_spaces"><a href="#">This is a Mixed
case String with SPACES</a></li>
I'd really like to understand how to accomplish this (rather than just get
an answer).
thanks in advance
saul
Hi-
Using Ruby 1.9: ruby 1.9.2dev (2009-02-12 trunk 22259) [i386-
darwin9.6.0].
It's unhappy with the non-ASCII right-double-quotes, left-double-
quotes and ellipsis around line 20 in the command "Typeset & View
(PDF)."
Adding:
# coding: utf-8
On the second line fixes things...
HTH, Charles
Hey there, I've got my Textmate Flex compiling working great with the
AS3 bundle, I'm just wondering if there's a way I can clear
flashlog.txt everytime I compile so I don't have to keep doing this
manually?
Cheers :)
Ali
--------------------------------------------------------------------------
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/
Hello,
I'm hoping someone can help. I don't know if I am doing something
wrong, or if there is a bug in the CSS bundle in TM 1.5.8.
For starters, when I open up a blank CSS document and hit opt-esc, the
only option I get is "title 2" (weird that it's not 1). If I'm reading
the CSS bundle correctly, I should get a list including #, *, ., and a
bunch of HTMl tags.
If I enter a selector and curly braces manually, and then hit opt-esc
inside the braces, I get the word "display" inserted. Again, from the
bundle definition (and logically), I would expect a list of CSS
property names.
Finally, if I enter a property name manually, followed by ':' (and get
the automatic ';' appended after the cursor), and then hit opt-esc,
all I get is '--', rather than a list of relevant attributes.
Would someone please help me understand what's going on here?
For what it's worth, I am working with a fresh "pristine" copy of the
"Bundles" directory in ~/Library/Application Support/TextMate/ out of
the "Pristine Copy" folder.
Thanks,
Avram
"I realized something was wrong when I looked over and saw the mast in
the water." - Dean Barker, Team New Zealand skipper
Hi
Does anyone know is there is a way to preserve syntax highlighting and print in color??
[f] www.flickr.com/photos/bitstream
[c] 416.668.0034
[w] www.bitstream.ca
--------------------------------------------
"...all improvisation is life in search of a style."
- Bruce Mau,'LifeStyle'
One annoying issue I have with the projects panel is every time I click on a binary, textmate tries to display a text version of it...if it happens to be a large zip, textmate sometimes crashes.
Is there some way to avoid this, outside of removing all binaries from your project panel?
[f] www.flickr.com/photos/bitstream
[c] 416.668.0034
[w] www.bitstream.ca
--------------------------------------------
"...all improvisation is life in search of a style."
- Bruce Mau,'LifeStyle'
Hi All,
I patched the ant bundle as described in a post earlier in January which fixes the build command but the build target command is not working.
After selecting the target text "main" in the build.xml file and then Ant->build target, I get the following error.
/tmp/temp_textmate.9KC3Zv:33: undefined method `attributes' for nil:NilClass (NoMethodError)
Any ideas what might be wrong, or maybe there is new bundle I could get?
Thanks in advance.
Is there any way to parse the open document (via regex search) and
return the results as choices for TextMate::UI.complete?
The command might search for "\$TM_\w+" so each time I want to type
$TM_SOMETHING I could get a list of completions built from what I've
typed elsewhere in the document.
I've got a basic TextMate::UI command up and running
<http://pastie.textmate.org/421465>, and as for a parser I've been
using this command: <http://pastie.textmate.org/421473> to complete
stuff thats been indented by 4 tabs (only bummer about this command is
that the document needs to be saved).
I'd love to combine these commands, but since I don't know Ruby I
don't have any idea what to do. (I scraped both those commands off
this list).
Thanks in advance.
I think the problem is "pstricks". If this package is involved, TM
uses automatically "latex" although "pdflatex" is set as default
engine. You can try it with this small example:
\documentclass{scrreprt}
\usepackage{auto-pst-pdf}
\usepackage{pstricks}
\begin{document}
Hallo
\end{document}
The package "auto-pst-pdf" should make using "pstricks" with
"pdflatex" possible but TM doesn't consider this. The only way I
found to avoid this is using the line
%!TEX TS-program = pdflatex
at the beginning of the code.
If there's anyone who has a better idea - I'm open for suggestions.
Am 19.03.2009 um 19:25 schrieb Allan Odgaard:
> On 19 Mar 2009, at 03:21, Gewitterbukk wrote:
>
>> [...] For example when I'm using packages like "auto-pst-
>> pdf" or "pstricks" TM uses "latex" to compile although "pdflatex" is
>> set as default engine.
>
> It tries to be smart, seeing that ‘pstricks’ works with postscript,
> not PDF. But I assume auto-pst-pdf makes it work with PDF or similar,
> and the command should either be even smarter, or not smart at all!?!
>
>> When I try to compile LaTeX-Code for the first time, I get the window
>> which is shown in the screenshot "pic1" attached in the appendix of
>> this mail.
>
> You say “for the first time”, does that mean the error is gone if you
> compile again, or that you resolved the problem?
Dear TextMate/LaTeX specialists!
I consult you because I've got a problem with setting up TextMate
(TM) for LaTeX correctly. At the moment TM seems to choose between
using "latex" or "pdflatex" by itself independent of the default
engine setting. For example when I'm using packages like "auto-pst-
pdf" or "pstricks" TM uses "latex" to compile although "pdflatex" is
set as default engine. This results in problems like everyone can
imagine. The only way to avoid this is inserting the line "%!TEX TS-
program = pdflatex" at the beginning if the LaTeX code. But that's
not the general idea I think.
When I try to compile LaTeX-Code for the first time, I get the window
which is shown in the screenshot "pic1" attached in the appendix of
this mail. Up to now I've pressed the button "Set PATH and Relaunch".
Just because I don't know what "kpsewhich" means and where it is to
find. Maybe that's the crunchpoint. After that the Terminal starts,
sets the PATH and TM restarts. But it doesn't work correctly in my
opinion. "Pic2" shows my LaTeX preferences. My current PATH is "/bin:/
sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/texbin". The shell
variables are shown in "pic3". I'm using Mac OS 10.4.11, TeXLive 2008
and the current version of TM.
I would be very lucky if someone could help me by letting me know the
right settings.
Thanks a lot beforehand!
Best regards from Germany
A. van Ohlen
Guys,
I'm trying to create a completion command for the C language, using
D2. For that purpose, I wrote a function using TextMate::UI.complete.
It looks almost like that:
#!/usr/bin/env ruby
require ENV['TM_SUPPORT_PATH'] + '/lib/web_preview.rb'
require ENV['TM_SUPPORT_PATH'] + '/lib/textmate.rb'
require ENV['TM_SUPPORT_PATH'] + '/lib/ui.rb'
currentWord = ENV['TM_CURRENT_WORD']
# Build the list of completion choice.
choices = [{'display' => 'hal_Aa'}, {'display' => 'hal_Ab'},
{'display' => 'hal_Abc'}]
# Display the completion popup.
options = {:extra_chars => '_', :case_insensitive => false}
TextMate::UI.complete(choices, options)
When I call this TM command, it works fine, but pressing the '_' key,
while the popup is displayed closes it and cancels the completion.
This is not the behavior I expect as '_' has been added to the extra
chars.
Does someone know how to have the '_' character being considered as
part of the word?
BTW, in my preferences, the "Word Characters" field is "_". I don't
know if this impacts.
Best regards,
Mathieu
___________________________________________
Mathieu Godart
Skype: mathieu_godart
MSN: mathieu_godart(a)hotmail.com
ASIC Integration Manager
Coolsand Technologies
___________________________________________
The Hyperlink Helper bundle's Wrap Selection as Link will default to
"http://some-site.com/" if it can't find something else to link to (e.g.
something on the clipboard). Unfortunately, some-site.com is a real site
which people probably don't want to link to by accident.
RFC 2606 <http://www.rfc-editor.org/rfc/rfc2606.txt> states that example.com
can be used, and if someone does indeed go to example.com, they don't
get surprised.
I'm sending this info because the "Send Feedback..." portion of TextMate
brought up a page that suggested Bundle bugs to be discussed here. I don't
know if the current behavior is considered by others to be a bug, but we
had a near miss that almost caused some-site.com to be linked to in our
production web pages. We'd definitely have preferred example.com to
be in our pages had we not caught the mistake.
--
Cliff Matthews <ctm(a)sceim.net>
formerly ctm(a)ardi.com
Thanks, that's been fixed. Must be an artifact of using the bundle
editor. I guess I just wait now? The patch remains at
http://pastie.textmate.org/416564
>
> ---------- Forwarded message ----------
> From: Daniel Stockman <daniel.stockman(a)gmail.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Date: Sat, 14 Mar 2009 19:35:24 -0700
> Subject: [TxMt] Re: Updating Javascript bundle?
> On Mar 14, 2009, at 3/14 6:54 PM, Michael Newton wrote:
>
>> Okay, I've created a patch using the instructions in the wiki article;
>> I've used SVN a fair bit, but never touched git so I'll leave that to
>> folks more knowledgeable than me. The diff file is here:
>> http://pastie.textmate.org/416564
>>
>> Let me know if there's any other way I can ease the addition of this
>> patch to the code base.
>
> Beware doubly-encoded ampersands in the diff (&amp; => &)
>
--
Michael Newton
http://mike.eire.ca/
Hi
first of all, congratulations for this fantastic enrichment of the
already genial project drawer. I did instaled Project+ and it worked
well (and I got really impressed) the first time. But after
installing and restarting and running it again it failed, TM shows the
classic project drawer, not the new enhanced one. You can touch round
the preferences of Project+ but it ignores them. But vuala! I opened
with mate several files from the terminal: "m *.json" and Project+
appeared, funnily both modes were present at the same time, the
classic one an the new one. Then I close and reopen my project and it
worked well.
The conclusion: you need to reopen a project to make Project+ to
became live.
- juan falgueras
The AppleScript window object in TextMate 1.5.8 (under Mac OS 10.5.6)
seems to be broken. I get get the window name and bounds, but not the
window document:
tell application "TextMate" to return (document of front window)
=> NOTHING
Compare this to TextEdit, which has a similar dictionary:
tell application "TextEdit" to return (document of front window)
=> document "foo.txt" of application "TextEdit"
Am I doing something wrong?
Regards,
Alan
--
Alan Watson
http://www.alan-watson.org/
Fo those of you using Consolas...
Microsoft's version of Consolas displays on the Mac and in TextMate
with an incorrect line-height, most clearly exhibited in selected
text, highlighted lines, and spelling error underlines. This makes
writing in Consolas irritating to me.
The version of Consolas that ships with BBEdit has a correct line
height but no italic or bold variations, which also irritates me.
If you extract BBEdit's Consolas from its package contents, install it
and disable Microsoft's "regular" weight, Leopard seems to use the
correct line-height information from BBEdit's version and apply it to
Microsoft's italic and bold weights.
Now Consolas is beautiful.
Sources:
<http://bandes-storch.net/blog/2008/12/21/consolas-controlled/>
<http://www.command-tab.com/2008/12/16/consolas-cursor-fix/>
The Ruby Debug.tmbundle is pretty old
http://www.datanoise.com/articles/2006/8/27/control-debugger-from-textmate
and I can't get it working anymore.
When I try and set a breakpoint in a rails project I'm getting this
tooltip error in textmate:
"We are not in a state that has an associated file"
The scope for the set breakpoint command is: source.ruby - comment
Does anybody have any ideas about why?
I put a copy of the Ruby Debug.tmbundle zip directory on github here:
http://github.com/stepheneb/rubydebug.tmbundle/tree
FYI: the ruby-debug gem itself has been updated so this command invocation:
rdebug -s --no-stop ./script/server
needs to replaced with:
rdebug -s --no-stop ./script/server
Guys,
I'm currently trying to develop a command which gets some log from a
cmd pipe and send the result of the TM command to the HTML output,
just like that:
cmd_pipe = open("|my_long_script.sh 2>&1")
cmd_pipe.each_line do |line|
print line
STDOUT.flush
end
cmd_pipe.close
This allows the web preview to be updated (better than the print
`my_long_script.sh 2>&1' for that reason) while the command is
processed. But my problem now is that the web preview does not got to
the end of the file automatically... This is a bit painful while
staring at the result of the command.
Do someone have an idea to force the web preview to scroll down each
time the STDOUT is flushed? Or something like that.
Thanks in advance.
Best regards,
Mathieu
___________________________________________
Mathieu Godart
Skype: mathieu_godart
MSN: mathieu_godart(a)hotmail.com
ASIC Integration Manager
Coolsand Technologies
___________________________________________
Hi list,
I started python and therefore I downloaded v3.0.1 as a dmg and
installed it.
If I test the version in the terminal with
python -V
it returns
Python 2.5.1
The same is used within Textmate.
I thought the old one will be updated with the new version... How
could I used the new version of python and where got it installed?
Thanks in advance
Christian
When I press that combo (by accident) I see the bottom bar of the TM
interface become a full-width text field with a flashing insertion
cursor, but I have been too scared to type anything into it. Has
anyone seen this? Any ideas what it means?
Thanks in advance,
Walter
Hi,
Recently I encountered a problem of running Perl script by cmd-R.
The error is:
/bin/bash: line 9: -e require
"#{ENV["TM_SUPPORT_PATH"]}/lib/tm/executor" require
"#{ENV["TM_SUPPORT_PATH"]}/lib/tm/save_current_document"
TextMate.save_current_document
TextMate::Executor.make_project_master_current_document
TextMate::Executor.run(ENV["TM_PERL"] || "perl",
"-I#{ENV["TM_BUNDLE_SUPPORT"]}", "-Mexception_handler",
ENV["TM_FILEPATH"], :version_args => ["-e", e_sh(%q{printf "Perl
v%vd", $^V})]): No such file or directory
I have tried to use GetBundle to update but this does not help.
Textmate: 1.5.8(1498)
[Sat Mar 14 22:33:05 mbp ~]$ cat /Users/cmlai/Library/Application\
Support/TextMate/Pristine\ Copy/Support/version
11282
Help?
Okay, I've created a patch using the instructions in the wiki article;
I've used SVN a fair bit, but never touched git so I'll leave that to
folks more knowledgeable than me. The diff file is here:
http://pastie.textmate.org/416564
Let me know if there's any other way I can ease the addition of this
patch to the code base.
> ---------- Forwarded message ----------
> From: Allan Odgaard <mailinglist(a)textmate.org>
> To: TextMate users <textmate(a)lists.macromates.com>
> Date: Sat, 14 Mar 2009 15:52:19 +0100
> Subject: [TxMt] Re: Updating Javascript bundle?
> On 13 Mar 2009, at 17:14, Michael Newton wrote:
>
>> [...]
>> So, how can I get the official bundle updated with this stuff? The
>> modified 'Commands/Documentation for Word.plist' is at
>> http://pastie.textmate.org/415305 and the index file
>> 'Support/dmo_index' is at http://pastie.textmate.org/415304
>
> http://wiki.macromates.com/Bundles/HowToContribute
>
>
>
>
>
> ---------- Forwarded message ----------
> From: Daniel Stockman <daniel.stockman(a)gmail.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Date: Sat, 14 Mar 2009 13:11:59 -0700
> Subject: [TxMt] Re: Updating Javascript bundle?
> On Mar 13, 2009, at 3/13 9:14 AM, Michael Newton wrote:
>
>> So, how can I get the official bundle updated with this stuff? The
>> modified 'Commands/Documentation for Word.plist' is at
>> http://pastie.textmate.org/415305 and the index file
>> 'Support/dmo_index' is at http://pastie.textmate.org/415304
>
> If you're into the Git hotness, you could clone my fork[1] (or download a zip/tarball) of Thomas Aylott's work-in-progress restructuring of the bundle. I committed your patch into my repo, I like it a lot. :)
>
> [1]: http://github.com/evocateur/javascript.tmbundle/tree/master
>
> Regards,
> Daniel
>
>
--
Michael Newton
http://mike.eire.ca/
What's the process for updating a bundle? I got sick of looking at ads
whenever I needed a bit of Javascript documentation so I rewrote the
Javascript bundle to use developer.mozilla.org for documentation. In
addition to changing existing links, I also added dozens of very basic
methods (like document.getElementsByTagName or Array.join), statements
(like if...then...else), and operators (eg instanceof or new) that
were not included for some reason. And removed things like taint and
untaint, which haven't been supported by any browser since Netscape 3.
Hopefully the people from 1996 won't mind.
So, how can I get the official bundle updated with this stuff? The
modified 'Commands/Documentation for Word.plist' is at
http://pastie.textmate.org/415305 and the index file
'Support/dmo_index' is at http://pastie.textmate.org/415304
--
Michael Newton
http://mike.eire.ca/
Hello,
Is there an easy way to assign `Next Completion' to the `fn' key and
`Previous Completion' to `shift' + `fn' ?
(Reaching the `esc' key on a laptop keyboard is quite a stretch...)
Thanks,
Stéphane.
--
Ce message a été vérifié par MailScanner
pour des virus ou des polluriels et rien de
suspect n'a été trouvé.
CRI UPVD http://www.univ-perp.fr
I have a WordPress 2.7 blog that I had been using with TextMate.
Around the time I upgraded WordPress to 2.7.1 and TextMate to 1.5.8
(1498), TextMate lost the ability to interact with my blog. it gives
"Error: bad login/pass combination(403)."
I've isolated the issue to when my password contains an ampersand (all
the other characters are letters and numbers). For example, when I set
the password to abcabc it works, but abc&abc does not.
Hello,
When I'm using TweetDeck, if I click on a link in TweetDeck TextMate
pops to the front and tries to open the URL. It can't and I get this
error:
This version of TextMate does not support “twitpic.com” in its URL
scheme.
If I drag TextMate to the trash, Safari opens the link as expected.
If I copy the link in TweetDeck it looks like this:
event:http://twitpic.com/1xtwr
Is there anyway to get TextMate to stop trying to open these links?
Thanks,
Adhamh