Hi there,
There seems to be a bug in the LaTeX bundle's reference/citation
auto-complete for my specific set-up.
I'm fairly sure I've fixed it (though its possible this is not the best /
most generic method) so I'll try to describe my problem / situation:
In my project I have a master .tex document, and several other .tex files
(each with something like the following line as their first line):
%!TEX root = ../thesis.tex
When I attempted to auto-complete references/citations I'd get this error
(output directly in my file at the cursor, not as a pop-up or tooltip):
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb:19:in
`initialize': No such file or directory -
/Users/andrew/Documents/Uni/Papers/Writing/Thesis/thesis.tex
(Errno::ENOENT)
from
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb:19:in
`open'
from
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb:19:in
`options'
from
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb:45:in
`master'
from
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb:56:in
`get_labels'
from /tmp/temp_textmate.oacqrp:8
File:
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb
The file that it claims does not exist definitely exists, but in the error
message that was output in my document, there was a diamond character
immediately after "thesis.tex", visible because i have the "Show Invisibles"
TextMate setting enabled.
I copied the text including the diamond character and pasted it into a
web-based ascii-to-hex converter (http://centricle.com/tools/ascii-hex/) and
it seems to be the character %0A, i.e. the Line Feed or new line character
(\n), suggesting the script is erroneously including the \n as part of the
TEX root filename property.
- I've checked the document in TextMate with Show Invisibles on and cannot
see any extra characters
- I've also tried deleting the line and typing it out again
- I've tried using absolute and relative paths for the root document
property
None of these solved the problem (and none had any detrimental effect after
I'd fixed it as described below).
I've fixed the problem by editing the script:
/Applications/TextMate.app/Contents/SharedSupport/Bundles/LaTeX.tmbundle/Support/lib/LaTeXUtils.rb
and changing line 42 from:
new_master = (master.parent + Pathname.new(opts['root'])).cleanpath
to:
new_master = (master.parent + Pathname.new(opts['root']*.strip*)).cleanpath
This fix would probably break the functionality of the root file if the full
specified path is required to start or end with a space (e.g. the root file
is called "master.tex "). I don't think quotation marks are allowed here to
account for this somewhat unlikely scenario, but it may well break the
script for someone. Perhaps a slightly better fix would be to remove a
single trailing \n character if it is present (however this is beyond my
Ruby scripting abilities).
Anyway, hope this is of some help and some kind of fix can be put into the
official bundle
cheers,
Andrew
Hello all.
I¹ve looked through the archives and didn¹t see anything resembling this
problem so I¹m sorry if it has already been addressed elsewhere.
When using the autocomplete feature (option-escape) or other certain
snippets in Textmate via either Ruby or Ruby on Rails, I receive the
following error:
/usr/local/lib/ruby/1.9.1/pathname.rb:270: warning: `*' interpreted as
argument prefix
/tmp/temp_textmate.0sHwXc:38:in `<main>': undefined method `to_a' for
"":String (NoMethodError)
What I¹ve tried so far:
1. Reinstalled Textmate
2. Reinstalled both Ruby and Ruby on Rails bundles. I tried the bundles from
both the SVN and the github sources.
3. Set the TM_RUBY variable to point to my system installed 1.8.7 folder
It¹s worth noting that snippets and autocomplete fails in other languages as
well PHP comes to mind. I¹m new to using Textmate fulltime for development
so this error is beyond confusing for me. This did not start happening until
after I updated ruby from 1.8.7 to 1.9.1.
Thanks in advance for any help you can offer.
Hi all,
I just discovered zen-coding (http://code.google.com/p/zen-coding/), which I find quite impressive. You can view a screencast for a quick overview of it's capabilites on Vimeo: http://vimeo.com/7405114.
Full TextMate support has been added recently (you'll have to install Zen.Coding.tmbundle, Zen.CSS.tmbundle and Zen.HTML.tmbundle).
Sorry for the noise if you already have been aware of this, but IMHO this is just too good to miss it…
Cheers,
Andreas
I have an issue where a 3rd party Textmate bundle is hiding a standard
bundle. Next, I have tried
changing the uuid of root .plist as well as the Syntaxes .plist of the 3rd
party bundle without any
success. Thus, the standard tmbundle isn't displayed within the Bundle
Editor or the Textmate ->
Bundles. If anyone has any ideas, please let me know.
Thanks in advance,
-Conrad
> Message: 3
> Date: Sat, 9 Jan 2010 17:20:24 +0100
> From: Allan Odgaard <mailinglist(a)textmate.org>
> Subject: [TxMt] Re: textmate and matplotlib
> To: TextMate users <textmate(a)lists.macromates.com>
> Message-ID: <D146CDDD-8300-445F-B433-2B198156A990(a)textmate.org>
> Content-Type: text/plain; charset=WINDOWS-1252; format=flowed;
> delsp=yes
> On 8 Jan 2010, at 14:44, Claus wrote:
>
>> I can execute scripts that contain matplotlib code perfectly well
>> from the command line (this one http://matplotlib.sourceforge.net/plot_directive/mpl_examples/pylab_example…
>> for example), but when I run them from within TextMate, python
>> keeps running endlessly, no error.
>
> This could be caused by the interactive input library we inject into
> Python (or the enabling of a flat namespace for the linker, whcih a
> Python library has previously been incompatible with).
>
> The easy fix is to:
>
> rm /Applications/TextMate.app/Contents/SharedSupport/Support/lib/
> tm_interactive_input.dylib
>
> There is also an environment variable you can set, but I can?t find it
> ATM (away from my regular machine), I?ll have the troubleshooting
> pages updated with this info.
I removed the tm_interactive_input.dylib, however TM (python bundle -- run script) is still keeps running for a long time until I "stop task", no error message.
Does anybody have other ideas?
Thank you,
Claus
Is it possible to select text from the current position, forward a number of
lines, or to (or even between) a specific line number(s)? Also, is there any
means of selecting text from the current cursor position up until a search
term is found? (ex, I'm on line 30, I search for 'foo', which happens to
occur next on line 57, so lines 30-57 (or at least line 30 through 'foo' on
line 57) are selected.
Appreciate any assistance that can be provided!
--
View this message in context: http://old.nabble.com/select-text-to-line-number%2C-number-of-lines-or-sear…
Sent from the textmate users mailing list archive at Nabble.com.
I find "Shift Left" and "Intent Line" in "Text" menu, but I don't know
the difference of the behaviors. Can anybody explain them to me?
I'm using "Shift Left" all the time, and I sometimes get forced to move
to the next line after running the command.
Wil
I am used to write scientific papers and books with LaTeX since many years,
but I was working with a PC and not a Mac until recently. Hence, my
knowledge on textmate is rather small, and there is a problem which I cannot
fix without some friends outside in the universe. I will describe my problem
step by step:
(1) My mainfile contains
\usepackage{index}
\newindex{default}{idx}{ind}{
Sachverzeichnis}
\newindex{name}{adx}{and}{Namensverzeichnis}
what means that there will be two indices in the book, a regular one
(default) and a name index.
(2) In order to generate the ind- and and-files respectively I used to run
makeindex -o mytex.ind mytex.idx
makeindex -o mytex.and mytex.adx
from the terminal. That will be working as well with my Mac, but it is not
really comfortable.
(3) textmate offers a simple button to produce the ind-file. And now there
is my problem. I would like to know how to create a textmate-command that
produced the needed and-file.
Thanks for help or any advice in advance.
I'm getting a TextMate hang and a beachball whenever I right-click on a
TextMate document, but only in my local profile (i.e. a newly created
account works fine). Have tried deleting prefs and removing all custom
bundles, but no joy.
This is accompanied by a single word message from TextMate in the
console log "INJECT_ENTRY".
Can anyone offer any suggestions as to how I might resolve this?
Thanks in advance,
Chris
Hi,
is anybody here using TextMate with matplotlib/python?
I can execute scripts that contain matplotlib code perfectly well from the command line (this one http://matplotlib.sourceforge.net/plot_directive/mpl_examples/pylab_example… for example), but when I run them from within TextMate, python keeps running endlessly, no error.
Any thoughts why this might be?
Thanks,
Claus
Hi,
Another rookie rails question --
with some of the commands in the bundle, I am getting the innfamous "stack
level too deep"
I have removed builder.rb in both /Library/... and ~/Library/... but no
luck.
How can I determine which builder.php its choking on?
thanks,
--
dc
David Clark
16 Harcourt St #2I
Boston, MA 02116
617/859-3069
Hi,
on my system are two different version of python installed:
- the default of OS 10.6 in /usr/bin/python
- the fink version in /sw/bin/python2.6
How can I tell TextMate which one to use?
Thanks,
Claus
I forked Jacob Rus's Tabular bundle and added a new language, PSV, for
pipe-separated values. It's not much—basically just a rewrite of the
TSV language with the pipe character (|) substituted for the tab—but I
thought it might be useful as a sublanguage for MultiMarkdown, which
uses pipes as field separators in tables.
My fork is at
http://github.com/drdrang/tabular.tmbundle
I don't have enough experience with git to know the right way to
submit it for inclusion in the official bundle, so I decided to
mention it here.
--
Dr. Drang
I'm having trouble with the LaTeX bundle. In the preferences, I select pdflatex, but when I command-R, it appears to be using latex and produces errors. In the "Typeset & View" window, the button always says "Re-Run latex," never "Re-Run pdflatex" as it used to.
I'm using TM Version 1.5.9 (1589).
Any ideas?
Jim
I have been using (and loving) textmate for years - mostly for html, php,
and some text manipulation.
I have all kinds of bundles installed, and think I understand the issue
of scope... maybe.. Like, when i'm editing a php file, I still have the
scope set to html so that I still have all my commands, be it from zenhtml,
mhtml, php, etc or the ones I cant live with out - shift-ctrrl-w (wrap
selection in tag).
i'm now starting to work in ruby and rails - and I have 2 questions:
1. are the ruby and ruby on rails bundles redundant or should I have both?
2. The bigger question - when editing ruby files it does not appear that I
have access to the commands i'm familiar with (see above)
thanks for any and all pointers
--
dc
David Clark
16 Harcourt St #2I
Boston, MA 02116
617/859-3069
How do I get the "Documentation for current word" to work.
Currently I get the following error:
Traceback (most recent call last): File "", line 8, in File "/Library/Application Support/TextMate/Support/lib/dialog.py", line 12, in dialog = os.environ["DIALOG"] File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/UserDict.py", line 22, in __getitem__ raise KeyError(key) KeyError: 'DIALOG'
UserDict.py does exist.
Thanks,
Christopher
With the latex bundle, I can put a %!TEX root = directive in each file, or esle use TM_LATEX_MASTER so whichever file I am editing, I can still compile the whole document.
How do I do this in other contexts, e.g. with a python project?
(I have tried search engines but could not come up with the right query to find the answer).
Thanks,
Christopher
Help needed. Since a couple days, all my ruby
macros calling TextMate::UI.menu( )
produce the following error:
sh: : command not found
/Applications/TextMate.app/Contents/SharedSupport/Support/lib/ui.rb:182:in
`load': Cannot parse a NULL or zero-length data (OSX::PropertyListError)
from /Applications/TextMate.app/Contents/SharedSupport
/Support/lib/ui.rb:182:in `menu'
from /Applications/TextMate.app/Contents/SharedSupport
/Support/lib/ui.rb:177:in `popen'
from /Applications/TextMate.app/Contents/SharedSupport
/Support/lib/ui.rb:177:in `menu'
from /tmp/temp_textmate.wMVbb2:17
I am not able to read inside Support/lib/osx/plist.bundle
since this is a binary file. Can't remember any big changes
in my setup (I moved to Snow Lep a few weeks ago, but
I seem to recall menus worked fine before Xmas).
Any idea or pointers? is Xmas to blame?
Thank you (and best wishes to everyone)
Piero
Is there a command to validate Ruby and Removing trailing whitespace?
I want to improve Command-S for Ruby development. I want to do
both of the commands at the same time.
Wil
Dear TextMate users,
I work with textmate 1.5.8 (1505) and Skim 1.3.3 (51) under Mac OS X 10.6.2 to typeset latex documents. I would like to use pdfsync for jumping "back and forth". I use \usepackage{pdfsync} in the preamble, set Skim to sync with textmate via Skim Preferences => Sync => PDF-TeX Sync support (preset: TextMate; Command: mate; Arguments: -I %line "%file"), and---of course---Skim is chosen as pdfviewer in TextMate. Now I should have shift-command-click for jumping from pdf to the code, and control-option-command-o for the other direction.
I use a main document main.tex which contains some latex code, as well as other chapters included with \input{chapter01}, \input{chapter02} etc.
I can easily go from the pdf file to the code, no matter where I am in the pdf. However, going from the code to the pdf does only work within the main document, not from one of the chapters. Although the pdf file is already open, it does not jump anywhere. Is this a known issue?
I also tried to check the "check for file changes" box in Skim, and used \include commands instead of \input to include the chapters---just played around, but it doesn't help.
Cheers,
marius
Dear TextMate users,
I would like to customize the way in which "Typeset & View (PDF)" works. Under Bundles => Bundle Editor => Edit Commands, I added the line "rm -rf *.toc" to the "Typeset & View (PDF)"-code. However, this did not work. I realized that this is a ruby script (although I have never worked with ruby) and changed my code to "puts `rm -rf *.toc`". Now the .tex document is compiled, but the command does not seem to be executed. How can I add unix shell commands to "Typeset & View (PDF)" to be executed on command+R?
Many thanks,
Marius
Here is the content of "Typeset & View (PDF)":
#!/usr/bin/env ruby
# coding: utf-8
require ENV["TM_SUPPORT_PATH"] + "/lib/tm/process"
require ENV["TM_SUPPORT_PATH"] + "/lib/tm/htmloutput"
require ENV["TM_SUPPORT_PATH"] + "/lib/tm/save_current_document"
require ENV["TM_SUPPORT_PATH"] + "/lib/tm/require_cmd"
# To enable the typesetting of unsaved documents, you must change the “Save” setting of
# this command to “Current File” and add the variable TM_LATEX_AUTOSAVE to TextMate's
# Shell Variables preferences. Be warned that your document must be encoded as UTF-8 if
# you excercise this option — becauseTextMate.save_current_document cannot know the file
# encoding you prefer.
TextMate.save_current_document unless ENV["TM_LATEX_AUTOSAVE"].nil?
TextMate.require_cmd("kpsewhich")
texMate = ENV["TM_BUNDLE_SUPPORT"] + "/bin/texMate.py"
engine_version = TextMate::Process.run(texMate, "version")
TextMate::HTMLOutput.show(:title => "Typesetting “#{ENV["TM_DISPLAYNAME"] || File.basename(ENV["TM_FILEPATH"])}”…", :sub_title => engine_version) do |io|
TextMate::Process.run(texMate, 'latex', '1', :interactive_input => false) do |line|
io << line
end
end
::Process.exit($?.exitstatus)
Dear TextMate Users,
I think I found a bug in LaTeX syntax highlight
Consider, for example:
\[
\begin{array}{l}
\;\{
\end{array}
\]
Lorem ...
In the above snippet of text the text after the math environment (i.e., \]) is in a math scope. The problem seems to be that the first line after \begin{array} starts with a tex command (i.e., \) and it contains a \{
(easy solution: remember to indent the first line of an array environment; I haven't had time to look at the latex grammar).
All the best
Guido
--
Guido Governatori
http://www.governatori.net/Textmate
in other words automate the process of automatically starting a new line after 80 characters.
I am sure there must be a setting somewhere .....
Thanks,
Christopher