When I launch the new "Preferences..."
command, I get the following error.
Any ideas?
Thanks, Piero
Traceback (most recent call last):
File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/
Latex.tmbundle/Support/bin/configure.py", line 5, in ?
pref = tmprefs.Preferences()
File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/
Latex.tmbundle/Support/bin/tmprefs.py", line 18, in __init__
self.prefs.update(self.readTMPrefs())
File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/
Latex.tmbundle/Support/bin/tmprefs.py", line 39, in readTMPrefs
plDict = plistlib.readPlist(pl)
File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/
Latex.tmbundle/Support/bin/newplistlib.py", line 77, in readPlist
rootObject = p.parse(pathOrFile)
File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/
Latex.tmbundle/Support/bin/newplistlib.py", line 397, in parse
from xml.parsers.expat import ParserCreate
File
"/System/Library/Frameworks/Python.framework/Versions/2.3/lib/
python2.3/site-packages/_xmlplus/parsers/expat.py", line 4, in ?
from pyexpat import *
ImportError: dlopen(/System/Library/Frameworks/Python.framework/
Versions/2.3/lib/python2.3/site-packages/_xmlplus/parsers/pyexpat.so, 2):
no suitable image found.
Did find: /System/Library/Frameworks/Python.framework/
Versions/2.3/lib/python2.3/site-packages/_xmlplus/parsers/pyexpat.so: mach-o,
but wrong architecture
Small request for the beamer language grammar. Would it be possible
for \frametitle to show up in the symbol list? That way you could
quickly navigate to individual slides. Thanks, Mark
Hi Everyone,
I just merged the typeset and view branch back to the mainline. Thanks to
everyone who made the effort to switch over to the branch! I think there
are still some good ideas that can be implemented but this is good progress
for now.
Please go back to using the the mainline now. I think the easy way is just
to remove Latex.tmbundle and then do an svn update in your Bundles
directory. If you are being selective about which bundles you check out
then just checkout the Latex bundle from the mainline.
Please let me know asap if you find anything wrong with this version.
Thanks,
Brad
--
Brad Miller
Assistant Professor, Computer Science
Luther College
I don't know if feature requests go on the email list or not.
I wanted to suggest a new "Output" option for the "Filter Through
Command" action. I think adding the option "Insert to Clipboard"
would be useful. I notice I run a number of *nix commands on text
(awk, tr, uniq, etc) but then it would be nice to have the option
where to paste it.
----
Brian H
binarynomad(a)gmail.com
http://www.binarynomad.com
I missed a few days of lists a week or so ago, and I was wondering if
there was an archive I could go to to read the missed messages. I
didn't notice one on the website.
If there is one, what's the URL? Thanks.
- Dushan
Hi all,
What is the procedure for making a new (small) new language bundle
available?
Add to the SVN? (need privileges, of course)
Host it oneself?
I'd mostly in the first place just like an SVN I can access from home and
work as it incrementally builds to something more useful.
I googled bundleforge (distant memory that that was an open place for
bundles, but it says come back soon?
t
Hi,
I have a few questions regarding my TM & Latex-Combination - I'm
switching from TexShop, but I just like TM better.
So, for using the package "glossaries" with TexShop I had to create
an extra engine... containing th following commands:
#!/bin/bash
bfname="`basename "$1" .tex`"
pdflatex "$1"
bibtex "$bfname"
makeindex -s "$bfname".ist -t "$bfname".glg -o "$bfname".gls
"$bfname".glo
makeindex -s "$bfname".ist -t "$bfname".alg -o "$bfname".acn
"$bfname".acr
pdflatex "$1"
pdflatex "$1"
Could be that this is a little often, but afterwards everything was
compiled, index, acronyms, bibtex etc...
How can I port this to TM? When I just select "Typeset and Preview"
i.e. glossaries don't show up or don't get updated.
??
Thanks a lot
flo
I'm new to TextMate and thinking of using it for teaching purposes. I would
like to fill out a form and have TextMate to automatically create the needed
file. For instance I have a snippet called csc (short for
CreateStandardClass) that looks like this
Class: ${1:ClassName}
SubClassOf: ${2:Object}
InstanceVariables: ${3:varName1},${4:varName2}
After I've entered the needed info (Rectangle, width and height) it looks
like this
ClassName: Rectangle
SubClassOf: Object
InstanceVariables: width,height
After entering height and pressing tab I would like TextMate to generate the
Objective-C code below. (It should be possible since all needed data is in
the variables $1, $2, $3 and $4)
// Rectangle.h
#import <objc/Object.h>
@interface Rectangle: Object
{
int width;
int height;
}
-(void) setWidth:(int) w;
-(void) setHeight:(int) h;
-(int) width;
-(int) height;
@end
// Rectangle.m
#import "Rectangle.h"
@implementation Rectangle;
-(void) setWidth:(int) w
{
width=w;
}
-(void) setHeight:(int) h
{
height=h;
}
-(int) width
{
return width;
}
-(int) height
{
return height;
}
@end
Is there a way to do this?
Thanks Bob