Hi,
I'm new to textmate (evaluating it) and bibtex and tex, so my question may
be of the newbie variety.
I've got bibdesk working ok, and was able to add citations to my document
using the BibDeskTMCompletions tool. But, when I run Bibtex from the LaTex
bundle menu, I get the following error:
Traceback (most recent call last): File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/bin/texMate.py",
line 471, in tsDirs = find_TEX_directives() File
"/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/bin/texMate.py",
line 306, in find_TEX_directives startDir = os.path.dirname(texfile) File
"/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/posixpath.py",
line 119, in dirname i = p.rfind('/') + 1 AttributeError: 'NoneType' object
has no attribute 'rfind'
I'm guessing it's some problem with an environment variable or something.
Or maybe some python problem? I'm a bit out of my league here, but eager to
learn. Any help would be appreciated!
Thanks,
Derek
Hi
Did anybody succeed in using Textmate for lisp. I get the following error
when I press Apple-key + R:
xcodebuild: Error: the directory /Users/userName does not contain an Xcode
project.
Thanks,
Raj
>Did you check for spaces in path to your graphics file? I had a
>similar problem awhile back that was solved by renaming folders, or
>just moving the pdf to the same directory as the .tex document.
>Kyle H. Ambert
>Fellow, National Library of Medicine
>Oregon Health & Science University
Yes the first thing I did was place the .pdf directly in the folder.
>To set LaTeX preferences in TextMate, press ⌘⌥, or select the menu item “Bundles > LaTeX > Preferences…”
>—Alex
Oh how I know it. I have read all the documentation and I cannot find
anything that tells me exactly what to put in these preferences. In
order to get Textmate to use the same engine that my TeXShop is using.
Anyone else have any ideas??
If I'm editing an open tab in my project, I'd like to be able to
automatically reveal the associated file in the project drawer. Is this
possible?
thanks,
-Morgan
Ok, there is one small feature I need before switching to TextMate from
BBEdit. Is there any way to force everything to be opened in one window? AKA
tabs or a list in the sidebar? My habit is to drag various documents into
the TextMate icon, but having 10+ windows open is a pain.
--
View this message in context: http://old.nabble.com/Forcing-documents-to-open-in-one-window--tp27844492p2…
Sent from the textmate users mailing list archive at Nabble.com.
I'm just getting started with TextMate and want to use it for C++
programming. I'm wondering if people can give me some pointers and tricks on
how to do that (other than the stuff in the C and other bundles, of course.)
Right now, all I'm really using is the syntax highlighting, auto-indent and
brace-matching. Everything else could be done in TextEdit.
One thing I specifically want to do is trigger my projects GNU 'make' script
and then have the output pipped into a TextMate window. Not that hard to
write a plugin for (though if anybody already has one, point me to it.)
However, the tricky part is that I want to link file names in the output to
files in TextMate in case the compiler spits an error at me. That means
either being able to click on something like "./includes/GUI/graphs.cpp:210"
and being taken to that file and line in TM, like a hyperlink, or having TM
put highlights/bookmarks/whatever directly at the line in question. Is this
at all possible?
I've searched Google and this list but I nothing has jumped out at me so far
(though the results are so long for "C++ textmate" that there may be
something buried there I'm not seeing.) If anybody can tell me how they use
TM for writing C++ projects using the GNU compiler tools (g++, make, GDB,
etc.) I'd really appreciate that.
--
-Matt T.
Hi,
I downloaded the zip for the makefile bundle, but I get this errors when
trying to use the bundle. It seems like i'm missing some files in order to
run that bundle effectively, where do I get them?
Error:
/tmp/temp_textmate.HtJz9T:3:in `require': no such file to load --
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/tm/executor
(LoadError) from /tmp/temp_textmate.HtJz9T:3
Ted.
--
View this message in context: http://old.nabble.com/Error-when-running-bundle-tp27843697p27843697.html
Sent from the textmate users mailing list archive at Nabble.com.
I am switching from using TextMate for all of my programing tasks. The
last (and incredibly frustrating) hang-up I am having is getting it to
compile my LaTeX documents. Whenever I add the command
\includegraphics{filename.pdf} to a file it chokes even thought if I
open the same LaTeX document with TeXShop it compiles perfectly. The
output I get even when I am using verbose is not very helpful, even
though I have been using LaTeX for 7 years or so.
I compile in TexShop with the Latex command and it appears from the
log that it is accessing the "/usr/local/texlive/2009" directory.
Further TeXShop is set with the following settings (I have also
attached a screencap of these settings:
Path settings
(pdf)TeX (default: /usr/texbin)
/usr/texbin
Distiller (ghostscript) (default: /usr/local/bin)
/usr/local/bin
pdfTeX
Tex (default: pdftex)
pdftex --shell-escape
Latex (default: pdflatex)
pdflatex --shell-escape
TeX + dvips + distiller
Tex (default: simpdftex tex)
simpdftex tex --maxpfb
Latex (default: simpdftex latex)
simpdftex latex --maxpfb
I am guessing that Textmate must be calling a different version of
latex that does not like to be fed .pdf files.
The PATH that Textmate recovered the first time I tried to compile a
LaTeX document is:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin
Is there a way I can set Textmate to use the same engine that TexShop is using?
Thanks,
Robi
Hi guys,
When I was trying to do some interactive input with Perl in TM, I got some
weird output.
For example, I use this script:
#!/usr/bin/perl -w
$pi = 3.14;
print "What is the radius? ";
chomp($radius = <STDIN>);
$circ = 2 * $pi * $radius;
print "The circumference of a circle of radius $radius is $circ.\n";
When I run the script and input "4", the output is this:
4
What is the radius? The circumference of a circle of radius 4 is 25.12.
I mean, when I input "4", I don't see the msg "What is the radius?".
Shouldn't TM first show this msg and then, as the user, I input "4"?
I know that there is some issue with interactive input in TM
(http://blog.macromates.com/2009/interactive-input/). Before I made the
changes mentioned in that thread, I was even not able to use interactive
input in TM. Now I can, but it just seems weird as mentioned above. And if I
run the script in the Terminal, everything is OK - I first got a msg "What
is the radius?", then I input whatever I want.
Any ideas about this?
Thanks,
Jon
--
View this message in context: http://old.nabble.com/Interactive-input-in-Textmate-%28for-Perl%29-tp278167…
Sent from the textmate users mailing list archive at Nabble.com.