If you're still using Terminal, you will find iTerm is an excellent
replacement.
It has tabs for multiple terminals, shortcuts for SSHelling to other
hosts, etc.
with http://iterm.sourceforge.net/
Regards,
JJ
---
Help everyone. If you can't do that, then at least be nice.
I've been playing with Textmate's latex capabilities and I am impressed.
But I am unable to get any graphics. Here is an example (TMExample):
\documentclass[12pt]{article}
\usepackage{ps4pdf}
\PSforPDF{
\usepackage{pdftricks}
\usepackage{pstricks}
\usepackage{pst-plot}
\usepackage{pstricks-add}
}
\pagestyle{empty}
\begin{document}
\PSforPDF {%
\begin{pspicture}(-5,-5)(5,5)
\psaxes[linecolor=blue,tickstyle=top]%
{<->}%
(0,0)(-5,-5)(5,5)
\end{pspicture}
}
\end{document}
Out of this I get a rectangle in the viewer saying:
Can’t show picture #1 because TMExample-pics.pdf not found. Create it
from TMExample.dvi using dvips and ps2pdf!
I am not sure what to do with this.
Hi List,
is there a shortcut to make tm close the current tag? On BBedit you
could find it under: Markup --> Close Current Tag. And it was pretty
useful.
'K:?
--
k 'E B O Y
. /|\/|\/|\/|\
. / \/ \/ \/ \
I believe the architecture information was added in 10.4.3 which was
the release after the announcement of the Intel switch.
Luke
> well that's strange. you're taking the correct route to get to the
> information. i'm running 10.4.3 though, so that MIGHT be why. it may
> have been added in the most recent update. only thing i can think of.
>
> Kyle
>
> On 1/11/06, Charilaos Skiadas <cskiadas(a)uchicago.edu> wrote:
>
>
>> On Jan 11, 2006, at 11:11 AM, Kyle Swank wrote:
>>
>>
>>
>>> if you expand the "More Info" section in 10.4.x you will see
>>> "Architecture: Intel, PowerPC"
>>>
>>>
>>>
>> These are the steps I take:
>> 1) Open Finder, and go to the Applications folder.
>> 2) Control-click to bring up the context menu, and select "Get Info".
>> 3) I see under general what I described above.
>> 4) If I click on the "More Info:" tab, I see only: "Last opened:
>> Sunday, January 8..."
>> 5) No Architecture information anywhere.
>>
>> Running 10.4.2. I do not however have the most current XCode version
>> installed, if that makes a difference.
>>
>>
>>
>>
As much as I love textmate the one area were it has continuously fell
short for me is in the web preview pane. I want it to keep the file
up that I last used when I go to a css file and display the changes
however it will does not work this way.
I found that I needed to check some css syntax today so I fired up my
second favorite editor CSS Edit and once again found the exact
solution I which textmate would introduce.
Is there anyway I could make a key command that would fire off a
message to CSS Edit to update it preview, similar to how I can make
Safari refresh? (CSS Edit has command-R assigned to refresh it's
preview)
Thanks,
Eric C
I just found 1.5 recently and I am very impressed -- it is excellent and
shows some very nice enhancements over the previous release 1.1.
I still hope to see it undo typing all at once (rather than a character
at a time) before switching, but this is by far the most promising
replacement for Pepper that I've seen.
Regards,
-- Russell
As a new user of TextMate, the only thing that has disappointed me is
the incredible slowness of many bundle commands. For instance, if I
hit ^⇧D to duplicate the current selection, TextMate beachballs
(hangs) for about 15 seconds. This is quite surprising because my
machine is fast enough (1.33GHz G4 with 1.2GB RAM) and my files are
small (< 200 lines).
If I run top while TextMate is beachballing, I notice that bash is
consuming all available CPU cycles. Could there be something wrong
with my bash configuration? (I realize that TextMate is probably just
running some UNIX commands on top of bash to do the bundle command,
but still... 15 seconds of 100% CPU activity just to duplicate a
selected line? That can't be right.) Does everyone suffer through
this, or only me?
Trevor
P.S. I searched the list archives for this problem, but all I could
find were slowness issues related to remote file systems. All the
files I'm working with in TextMate are local.
Dear Textmates,
I am currently evaluating Textmate as a substitute for Emacs. My
first impression is really good (especially due to the excellent
documentation), but now I have encountered a problem that I cannot
resolve by myself. I hope you can help me with it.
I mostly work on LaTeX documents. With AucTeX, pressing Meta-q
(Reformat) when on line 2 of the following block of text would
reformat lines 2 and 3:
\begin{description}
\item[Projectivity:] A word and its transitive dependents must form a
continuous region of the full sentence.
\item[Planarity:] Dependency edges must not cross when drawn above the
words of the sentence.
\end{description}
The corresponding action in Textmate (Control-Q) produces this:
\begin{description} \item[Projectivity:] A word and its transitive
dependents must form a continuous region of the full sentence.
\item[Planarity:] Dependency edges must not cross when drawn above the
words of the sentence. \end{description}
I wonder if there is any way to tell Textmate that in LaTeX mode, a
paragraph should only stretch from the beginning of an \item to the
beginning of the next \item (or the \end{...} token), rather than
between empty lines? (This is what AucTeX does in the Emacs setting.)
Any help is appreciated.
Best,
Marco
Image Map Tool:
This is probably the feature from Homesite that I miss the most with my
transition to OS X for my work computer.
TM has done a great job of easing the pain in most other regards, but I
still find myself having to create at least one or two new image maps
every week. Most of the guys I work with are happy firing up ImageReady
to create them, but I consider this ridiculous. It's overkill to open a
(bloated) program, which I use for no other purpose, just to create an
image map.
Having used BBEdit prior to TM, I know that it also lacks an image map
tool. So this would be yet another area in which TM could beat BBEdit.
Warren L. Parsons
Salvete,
in a new language definition (MuPAD), I have
foldingStartMarker =
'\b(proc|domain|case|if|%if|for|while|repeat|axiom|category)\b';
foldingStopMarker =
'\b(end|end_proc|end_domain|end_case|end_if|end_for|end_while|end_repeat|end_axiom|end_category)\b';
Now, this works as expected, but I get folding markers whenever I type
the word “for” in a comment. Should I switch comment contents
explicitly to text scope or what is the recommended way of dealing with
keywords appearing in comments?
As an aside, another question on folding: MuPAD allows code of the
following structure (and that is actually quite common):
if foo then
dosomething()
elif bar then
dosome();
thingelse();
else
noidea();
end;
case x
of 1 do
...;
break;
of 2 do
...;
break;
otherwise
...
end;
What I would like to have is the ability to fold away the indented parts
above, i.e., everything fom an if or elif to the next elif, else, end,
or end_if, whatever comes first, from else to end/end_if, from an of
inside case to the next of, otherwisem end_case, or end and so on. But
it seems I can't have begin and end of two folding regions on the same
line, or can I?
regards,
Christopher
My Haskell bundle seems to have disappeared from the languages menu
and bundle editor. The bundle is in my /Library/Application Support/
TextMate/Bundles/ directory, but it doesn't show up in the TextMate
menus. If I save a file as .hs or .lhs, the mode is activated
correctly, so I know the bundle is getting loaded. Any ideas?
-dudley
If you're still using TextMate, you will find emacs is an excellent
replacement.
It has all kinds of stuff and can even cook your coffee (with a
compatible
coffee automat).
with http://www.gnu.org/software/emacs/
Regards,
Soryu
PS: Pun intended ;)
All,
Is there a way to use vi cursor key bindings in Textmate?
Sorry for the newbie question. I've just converted over to the Mac,
Textmate, etc.
Thanks,
-- Tim
Tim Wolters
Chief Technology Officer
Collective Intellect
http://www.collectiveintellect.com
Sorry for the post to everyone, but I know there are at least a
couple of mathematicians in the crowd, and I thought that we could
arrange a meeting with any of you attending the San Antonio Joint AMS-
MAA meetings. I'll be there from Thursday afternoon to Sunday, and
will spend my time mostly being interviewed, but I'm sure we can find
some time to meet.
Haris
I've searched diligently but can't find out, is there a way to display
all or part of the Project's Path on the main window? I use Subversion,
and have working directories like:
~/src
pcb-gcode/
rb3.0/
rb3.1/
trunk/
They all look the same when I'm in TM, so an elided path, such as used
elsewhere, would be great!
Thanks,
JJ
---
Help everyone. If you can't do that, then at least be nice.
Hi, folks,
I must have missed a preference somewhere. Is there a way to tell
TextMate to *not* open the previous document when I start up? I'm
perfectly happy with a new blank document, and I'd rather not have to
close the last document I worked on and open a new one every time I open
TextMate...
TIA,
Mike
--
Michael S. Tashbook
<mtashbook(a)acm.org>
Support your local shoggoth!
I had started a mediawiki bundle, which has not gone much further
than copying from the markdown bundle, but at least one person asked
me to make it available.
Since I am not really very proud of it as it stands, and since I am
not planning to work on it much in the near future, I won't add it to
the repository yet, but if you want to download it and use/improve
it, point your browser here:
http://skiadas.dcostanet.net/uploads/mediawiki.zip
Haris
Hello
i need to use this script for latex:
> #!/bin/sh
> location=$(dirname "$1")
> basefname="${location}/`basename "$1" .tex`"
> # process the figures
> latex --shell-escape "$1"
> dvips -Ppdf -o "${basefname}-pics.ps" "${basefname}.dvi"
> ps2pdf13 "${basefname}-pics.ps" "${basefname}-pics.pdf"
> /bin/rm "${basefname}-pics.ps" "${basefname}.dvi"
> #process the file (once)
> pdflatex --shell-escape "$1"
>
but i don't know how to make this.
Perhaos i need to modify the script in the command Typset & View :
run_tex () {
if [ "$TEX" != latexmk.pl ]
then "$TEX" ${TM_LATEX_OPTIONS:= --shell-escape -
interaction=nonstopmode -file-line-error-style} "$1"
else "$TEX" -f -r "${TM_BUNDLE_PATH}/latexmkrc" "$1"
fi
}
An idea ?
Thanks
Alain Matthes
Hello all,
I recently upgraded from version 1.0.2 to 1.5(906) and seem to have
lost an option. In 1.0.2 I was able to select View->Syntax Highlight
As -> (insert language here). Now with 1.5 that option is not
available in the menu. I do get the proper highlighting if I save
the file with the appropriate extension (.py for Python), but I can
not seem to find a place to start off that way. That is except for
using a template.
Did I mung something up here?
I have deleted and reinstalled but to no avail.
Thanks,
Brian
Hi there -
Ive been a textmate user for many months now. I notice the most
recent download (rev 898) has dramatically changed the "find" dialog,
most importantly in that it has removed the option to search and
replace within a selection !
I noticed that the "edit" menu has a selection "replace all in
selection". There are two problems with this. One is, it doesnt
work ! I click on it when i have some text selected, and nothing
happens. If it is in fact using my previous selection, thats not
very convenient since I dont get a chance to tell it what i want to
search and replace. Also, the key comibination - shift+ctrl+apple
+F ... a little excessive perhaps ?
Why cant the "replace in selection" checkbox be present in the
default "find" dialog like it was, and more importantly, why cant
this checkbox be automatically selected when I have text selected ?
this is how TextPad does it and it is by far the most intutive way to
do it.
- mike
# TextMate 1.5
It is with great pleasure that I am releasing [1.5 of TextMate][1]
(5.4 MB).
This is a free upgrade for all registered users and it features
hundreds of major improvements over the last non-beta (1.0.2) which
was released a year ago.
The jump in version number from last beta (1.1ß17 r898) is to
indicate how much has changed since 1.0.2, and that this release is
to be seen as half-way towards the 2.0 release.
_TextMate is a text editor that combines the beauty of Cocoa with the
power of UNIX and is intended for programmers and power users._
_TextMate has been built for both PPC and i386 and comes with a
[complete manual][2]._
[1]: http://macromates.com/textmate/files/TextMate_1.5.dmg
[2]: http://macromates.com/textmate/manual/