Is there any easy way to sync bundles/settings (like keyboard shortcuts for
commands) across computers with Dropbox?
If not, this would be a great feature to add.
Henry
So, just finished the first draft of my novel. TextMate was the editor
of choice this time, and things went wonderfully. I liked the
find/replace in project, which allowed me to use variables until I
could think of the name for something. :-) (I used a Ruby gem I
modified to convert Markdown to LaTeX and then compiled into PDF. Also
can independently convert the Markdown to epub. :-) I love geekness.
You may not remember that a while back I needed some rather odd text
competions (" => ``TM_SELECTED_TEXT$0"). The only problem is now it
appears everywhere! That is, when I use TM to edit anything, the
single double quote expands out. I don't need it except for Markdown
(.md) files.
Anybody know how? Or, at least point me in the right direction?
TIA.
--
Ben Wilson
"We cannot determine the character or nature of a system within
itself. Efforts to do so will only generate confusion and disorder."
Boyd
Along with my recent experience with the "jumping gutter", I now am getting the left side of my document getting cut off from time to time.
http://cl.ly/2J2b1h1n2Y3x0G121u3P
Manual resizing takes care of it, but its not clear why this is cropping up all of a sudden. I did not notice any of these UI issues before the last update. Was a bug introduced?
cf
Hi,
I am working on the language grammar of my bundle and I am running into
problems for the following case:
Given:
=====
Heading
=====
I want to be able to assign a style to the over and underlines and another
style to the Heading part.
- "Heading" can be any character (but is always on one line).
- The over line is not required and is usually used to indicate the highest
level of a heading (but it can be left out completely).
Characters for the over/under lines can be any non alphabet letter but
usually one of the following is used:
.,-=+~*"'´|
The goal is to at least be able to style the "Heading" text and to include
the "Heading" in the symbol list.
Also this is used at the top scope definition level so that I can chop up
the text into heading sections and text body sections.
I would therefore include repository rules for heading sections and other
repository rules for the text body sections.
Because TextMate can't handle multiline regexes I found this problem to be
unusually hard.
I am also unclear on questions of order within the top level scope
definition.
If two grammar patterns apply to one text section equally which one is used?
e.g. if I have a patterns array in the top level:
patterns = (
rule1 = { name = 'scope1', match = ... };
rule2 = { name = 'scope2', match = ... };
)
and both apply equally to some text is rule1 used and then overwritten by
rule2 so that the text is under scope 'scope2' ?
The help seems to discuss ambiguities like this for theme scope selectors
but not for language grammars.
I am also unclear how you can make a regex backreference from an end pattern
to a capture group in begin pattern or vice versa. (below I assume it is
backslash-1 but I'm not sure).
Also is it possible to define rules for one scope, rules for another and
then say everything else is some third scope without needing to define match
rules?
Here's what I have so far:
{ scopeName = 'source.sphinx.doc';
fileTypes = ( 'rst', 'rest', 'txt' );
patterns = (
{ contentName = 'meta.doctitle.sphinx';
begin = '^((?:=|\-|_|~|`|#|"|\^|\+|\*){3,})$';
end = '^(\1)$';
beginCaptures = { 0 = { name = 'markup.doctitle.overline.sphinx'; }; };
endCaptures = { 0 = { name = 'markup.doctitle.underline.sphinx'; }; };
},
{ name = 'meta.heading.sphinx';
begin = '^([A-Za-z][^\n]+)$';
end = '^(=|\-|_|~|`|#|"|\^|\+|\*{3,})$';
beginCaptures = { 0 = { name = 'markup.heading.sphinx'; }; };
endCaptures = { 0 = { name = 'markup.heading.underline.sphinx'; }; };
},
{ contentName = 'meta.paragraph.restructuredtext';
begin = '^(?!=|-|~|`|#|"|\^|\+|\*)([ \t]*)(?=\S)';
end = '^(?!\1(?=\S))';
},
);
};
meta.heading.sphinx is used for
Heading
---------
and meta.doctitle.sphinx should be used for the over/under line Heading
case.
A meta.paragraph should then capture everything that isn't meta.heading or
meta.doctitle but this has proved problematic to say the least.
I would appreciate it if anyone could share a trick to make this possible or
an answer if this is even possible at the moment or not.
Thank you very much for reading!
Andre
--
View this message in context: http://old.nabble.com/Language-Grammar-Problem-tp30491202p30491202.html
Sent from the textmate users mailing list archive at Nabble.com.
I'm partially blind, and constantly find myself squinting and
straining to see what I'm selecting in the project window (Which is
one of TM's strengths IMO).
I've tried using
http://headfirstproductions.ca/modifying-textmate-drawer-font-size/ ,
but my lack of familiarity with IB and XCode has left me unable to
actually make this work reliably.
I would pay another $20-30 for this one feature alone.
-Chris
--
Christopher Patti - Geek At Large | GTalk: cpatti(a)gmail.com | AIM:
chrisfeohpatti | P: (260) 54PATTI
"Technology challenges art, art inspires technology." - John Lasseter, Pixar
Hello,
I have looked at the TextMate wiki page and in the GitHub project page
and haven't been able to found this.
Is it there any bundle to provide, at least, syntax highlighting for
the wiki format used by Google Code? In particular, the format
described here:
http://code.google.com/p/support/wiki/WikiSyntax
Thanks!
--
Julio Merino
what is the format to view the archives.
I did download a archive, thinking i could "just open it" in Textmate.
The default of txt was appended and when it did open it was gibberish
encoding.
thank you
while debugging some javascript i have come to see that TexMate has an issue
with the CSS selector, border-width written in Javascript as
style.borderWidth
If i write style.backgroundColor, it will show in color green in Textmate.
I have retained the TextMate default color scheme in preferences/fonts
colors/Mac classic.
when i write style.borderWidth it stays black as if it were a variable.
I would assume the Browser compiler or interpreter engine ? would accept the
Javascript script as is, and that TextMate would not be adding any encoding
to its interpretation of the script while showing style.borderWidth as
invalid.
i am learning javascript from a book and the author is not ordained by thy
holy one and this script works to some degree, yet is off balance, this is
what i am working on.
<!--
/*
<code>
var d1 = document.getElementById("div1");
var d2 = document.getElementById("div2");
d1.onmouseover = function()
{
d1.style.backgroundColor = "00ff00";
d2.style.borderWidth = "7px";
};
d1.onmouseout = function()
{
d1.style.backgroundColor = "#ffffff";
d2.style.borderWidth = "1px";
};
</code>
*/
-->
I have composed this message offline going over the message many times to
see that it is concise and to the point, forgive me if it is long winded and
confusing.
Thank you
A rather annoying behavior has cropped up recently for me in TextMate. Periodically, the gutter will "jump", getting wider and narrower over and over again. Its probably easiest to just show a video:
https://www.me.com/gallery/#100103/iShowU-Capture2
Why is this happening, and how can I stop it?
Thanks,
cf
Hi everyone -
I'm having a weird problem with LaTeX/BibTeX cite key autocompletion.
My bib file is in the appropriate place in the user texmf tree, and
BibTeX finds it when I compile the document... but cite key
autocompletion does not work ("bib file not found" or something like
that). Cite key autocompletion DOES work if I put the same bib file
in the same directory as the TeX file itself.
Thoughts? Any help would be greatly appreciated.
Thanks!
Best, Chris MacMinn
Made a disappointing discovery today.
Wrote documentation with markdown and created a custom preview theme especially for this documentation.
Then tried to print it (to a PDF ofc ^^) and the default theme was used, even though the preview was currently
showing my text with my own theme.
Is this an easy fix? Would be a cool feature!
/ Simon
Hi there!
I have a simple, surely often asked question. Please don´t "RTFM!" me, I really did search and google for that.
So here is my problem: We develop in Perl with textmate. We have two functions in our framework, called "breakpoint" and "debug". Those are marked with yellow background and black font. Unfortunately, the developers who know how to adjust textmate correctly, are all gone (they´re not dead, just quit!). I got a new machine and am trying desperately to set the highlighting of those two words eversince.
During my crusade I also discovered that we have a customized language declaration for Perl under "Bundles/Bundle Editor/Edit Languages/Perl". I put that one on my new machine, but it doesn´t do the trick.
Here are two screenshots which show how it looks on the old machine and the setting ("perl.control") that I suspect being responsible for that:
http://www.dreamway.com/screen1.pnghttp://www.dreamway.com/screen2.png
Thanks for your help!
Hey all,
I am using TextMate to tex a lot of stuff and I love the pdfsync feature with Skim.
Since this afternoon, the sync stopped working :(I reinstalled Skim and TextMate after deleting them (including Lib/App Support stuff and Caches), but I still get an error at the end of the typesetting run:
sh: /var/folders/My/My9skQrnFpON8oDbZaiRXk+++TI/-Tmp-/Skim: No such file or directory
That should be related to the problem, but I can't figure it out. So, any hints or suggestions?
Thanks a lot!
Best regards,
Andreas
Have you tried using enter in prefference to return?
I think this depends on the bundle you're useing but using enter (⌅), which
is fn-return(⏎) on my Macbook Pro will insert a new line with same indenting
as the current line. In the ruby bundle this will also continue comments
and other things.
Cheers,
Sean.
kartik.thapar wrote:
>
> I am new to textmate. I absolutely don't require indentation rules when
> using if/switch/case, etc.
>
> I want a very simple indentation rule which makes the next lines's indent
> same as previous line's indent.
>
> for eg.
>
> sub foo
> { <- 0 indent
> my $str = "string"; <- manual indent
> # <- auto indent (*)
> } <- manual indent
>
> I am looking for auto indent as described above. Any one know how to do
> this?
>
--
View this message in context: http://old.nabble.com/Next-line-indentation-tp30308903p30366710.html
Sent from the textmate users mailing list archive at Nabble.com.
Hi,
Is it normal behaviour that the Web Preview window closes when you switch to
another file in the project? Or is this a known bug?
The preview window can hardly be useful if this behaviour is the expected
behaviour?
I am working on some Sphinx doc files and whenever I switch to a .rst file
to run my build pipeline the preview of the HTML file I am interested in
closes. It would be really awesome if it could stay open somehow so that I
would be able to take advantage of the auto-refresh behaviour. Is there a
setting I can switch on or maybe some other workaround?
Thanks for reading!
André
PS: when searching I found numerous posts mentioning two web previews - I
can only assume that one is meant to be the Show as HTML output Command
option and the other the Show Web Preview Window menu action. Just to be
clear I am talking about the latter.
--
View this message in context: http://old.nabble.com/Show-Web-Preview-window-closes-on-file-change-tp30366…
Sent from the textmate users mailing list archive at Nabble.com.
Hi,
I did update the Subversion bundle from http://svn.textmate.org/trunk/Bundles/Subversion.tmbundle . The last commit was to remove TM_RUBY. I didn't follow the list about that issue but it seems that inside the command "Update to Newest" ruby code the variable #{ruby} isn't set correctly.
...
ruby -r "$TM_SUPPORT_PATH/lib/shelltokenize.rb" <<END
svn = ENV['TM_SVN'] || "svn"
support = ENV['TM_BUNDLE_SUPPORT']
paths = TextMate.selected_paths_array
# TODO: Ideally, we'd like to use a tooltip for one and not others, but we can't switch from a tooltip
# to dynamic HTML output (or maybe we could double-fork a process?)
# if ((paths.size == 1) and not (File.directory? paths[0]))
# puts %x{#{svn} update #{TextMate.selected_paths_for_shell}}
# else
update = IO.popen("'#{svn}' update #{TextMate.selected_paths_for_shell}", 'r')
format = IO.popen("'#{ruby}' -- '#{support}/format_status.rb'", 'w')
update.each_line { |line| format.puts(line) }
# end
END
...
look at line :
format = IO.popen("'#{ruby}' -- '#{support}/format_status.rb'", 'w')
If I change it to:
format = IO.popen("ruby -- '#{support}/format_status.rb'", 'w')
everything works fine.
Did I miss something?
Thanks a lot in advance,
--Hans
Hi all,
A quick search of both Google and this lists' archive didn't solve this for me so I am wondering if anyone here has an idea.
I use RVM and Textmate. I followed the instructions at:
http://rvm.beginrescueend.com/integration/textmate/
(including moving the builder.rb in /Applications/TextMate.app/Contents/SharedSupport/Support/lib/)
However, I still get "env: ruby: No such file or directory" from Textmate. Using env from the command line works fine:
mbpatrick:~ patrick$ /usr/bin/env ruby -v
ruby 1.8.6 (2010-02-05 patchlevel 399) [i686-darwin10.4.0]
mbpatrick:~ patrick$ sudo ln -s /usr/bin/env /usr/local/bin/env
Password:
mbpatrick:~ patrick$ /usr/local/bin/env ruby -v
ruby 1.8.6 (2010-02-05 patchlevel 399) [i686-darwin10.4.0]
And my textmate_ruby script works fine:
mbpatrick:~ patrick$ /Users/patrick/.rvm/bin/textmate_ruby -v
ruby 1.8.6 (2010-02-05 patchlevel 399) [i686-darwin10.4.0]
mbpatrick:~ patrick$
My shell variables in Textmate:
TM_RUBY /Users/patrick/.rvm/bin/textmate_ruby
PATH /usr/bin:/bin:/usr/sbin:/sbin
I've quit Textmate and restarted, quit shells and restarted, I've tried putting /Users/patrick/.rvm/bin in my PATH (in TextMate), I've tried putting /Users/patrick/.rvm/rubies/ruby-1.8.6-p399/bin/ in my PATH (in Textmate), I updated Textmate and all it's bundles to the newest versions, nothing seems to work.
I am curious why TextMate is using env at all given that TM_RUBY is set...
Anyone have any ideas? Would appreciate any help.
Patrick
Dear all,
I've just updated the GetBundles Bundle and the script which runs once a day to cache and provide all information. The problem was that github did change its URLs and API again. Maybe for the future to avoid such instances we could maintain a list of all github hosted bundles in a github repository ( only an idea :) .
@Shawn Parker
I was able to install your WordPress bundle by using GetBundles version 1.4 :)
All the best,
--Hans
Hello:
Is there a way for me to configure my computer so that using "Quick Look" with a TextMate-associated file actually does a "quick look"?
I have some of my source files types associated with TextMate, say "*.asm", and they show up with the TextMate icon, but when I try "Quick Look," all I get is the file information.
Thank you,
dZ.
So, one shortcut I use frequently in HTML is 'ctrl+shift+w'. However,
recently it has started giving me the expected p tag, as well as a large
body of css that I once copied to the clipboard and, i assume, then hit some
other crazy combination of keys to copy it to the 'ctrl+shift+w command'.
Any ideas how to fix this??
Thanks!
--
Zac Parker
zac(a)zacparker.com
http://www.zacparker.com
Hi,
After upgrading to Snow Leoperd, the shortcut Shift-Cmd- Left (or
Right) Arrow, that would select a part of the line, stopped working.
How can I fix this?
I want to be able to execute a multi-line SQL statement by placing the cursor anywhere in the statement OR immediately following the ending statement semi-colon. With the grammar fragment below everything seems to work fine except for the case where two statements are on consecutive lines:
select 1;
select 2;
In this case, both statements are executed because it looks like a single consecutive scope. I have tried various things, but I can't seem to find the right regular expression magic to only execute the statement to the left of the semi-colon.
{ name = 'meta.statement.pgsql';
begin = '(?i)^(abort|alter|analyze|begin....)';
end = ';\s*';
beginCaptures = { 0 = { name = 'keyword.other.pgsql'; }; };
patterns = (
{ include = '#dollar_quotes'; },
{ include = '#comments'; },
{ include = '#strings'; },
{ include = '#keywords'; },
{ include = '#misc'; },
);
},
Thanks for any help or suggestions.
John DeSoi, Ph.D.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello
I recently discover that in the latest build of textmate when I have my latex project and insert TODO element
after invokikng control shift T it presents mi a TODO window with nothing shown.
on single file with latex everything is working.
I am using in my project one main document file and several others tex files included in main.
Anyone can confirm this strange behaviour?
Regards
Sebastian Szwarc
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.16 (Darwin)
iEYEARECAAYFAkz0FQkACgkQrcTqu+KxYfeKeQCgxqhB9n3zwtSqpfd+lrlr97po
SPgAoJ51yu6Hb37PzUMelfxthZ6qZ1Mp
=0F6H
-----END PGP SIGNATURE-----
On Sun, Nov 28, 2010 at 8:19 PM, Stephen Bannasch
<stephen.bannasch(a)deanbrook.org> wrote:
> I often end up with a large number of untitled files that I sequence through
> when I am done working. Some I save but many I just review and close. It
> would be great to have a keyboard shortcut for the "Don't Save" option in
> dialogs like this:
>
> Do you want to save the changes you made in
> the document "untitled 25"?"
>
> "Don't Save" "Cance;" "Save"
>
> Very occasionally I have also lost access to the mouse while having many
> windows open. These windows consist of some that need to be saved and some
> that should just be discarded. When I do not have access to the mouse I have
> to save EVERY window in order to complete an orderly Quit of Textmate. A
> keyboard shortcut for "Don't Save" would be particularly useful here.
Textmate follows the OS X standard, you have two options,
First command-d will select Don't Save, this works in most OS X apps.
The other option may require that you have keyboard navigation turned
on (in they system preferences), in this case dialog buttons
surrounded by a blue ring are selected when you hit space, for my
installation TM defaults to having 'Don't Save' as the secondary
default (there's probably a better name).
HTH
Peter
> _______________________________________________
> textmate mailing list
> textmate(a)lists.macromates.com
> http://lists.macromates.com/listinfo/textmate
>
I often end up with a large number of untitled files that I sequence through when I am done working. Some I save but many I
just review and close. It would be great to have a keyboard shortcut for the "Don't Save" option in dialogs like this:
Do you want to save the changes you made in
the document "untitled 25"?"
"Don't Save" "Cance;" "Save"
Very occasionally I have also lost access to the mouse while having many windows open. These windows consist of some that need
to be saved and some that should just be discarded. When I do not have access to the mouse I have to save EVERY window in order
to complete an orderly Quit of Textmate. A keyboard shortcut for "Don't Save" would be particularly useful here.
Hi,
I noticed that the font in the output window has been changed. The font
family used to be Monaco but at some point in the last week or so it became
Luxi Mono. I am not sure if it's because of the 2 TextMate updates or not,
as I don't run stuff to the output window everyday.
After some googling I realized that it could be set by changing your output
theme. This is not without some effort and I thought I would throw this out
and see if anyone else is seeing the same thing...
Thanks all!
The scanf function in the C bundle of textmate does not appear to be working. I find myself unable to feed any input to any program that i write.
Arun Vijayshankar
Since the last update a few days ago, I cant create new files from within TM
by right click on folder. It allows me to input into the dialog box and
select type, but clocks and just disappears. many times I have to force
quit.
This is happening on two machines, both snow leopard , and latest build of
TM.
Please, any ideas? I have completely removed and reinstalled several times.
--
View this message in context: http://old.nabble.com/Clocks-when-creating-new-file-tp30239160p30239160.html
Sent from the textmate users mailing list archive at Nabble.com.
I've got a code base that's been created in created using the whitesmith indented brace style.
Does anybody have a sets of ident rules that handle it. I'm new to textmate and still groping around
Thanks,
Gary
I hardly use the project drawer. I always us ctrl-t to search for the file name I want. It's far faster when you know what you are looking for.
Josh Powell
Hi,
This is what I get when updating or installing a bundle hosted on GitHub.
11/22/2010 23:35:41 TextMate[GetBundles]
Installing “Ruby”
11/22/2010 23:35:42 TextMate[GetBundles]
curl: (60) SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify
failed
More details here: http://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
Installing/updating bundles from the official repo works fine.
Here is the result of "Check Requirements":
“svn” client found in: /usr/bin/svn svn, version 1.6.5 (r38866)
“TM_SVN” set to:
“unzip” found in: /usr/bin/unzip
“tar” found in: /usr/bin/tar
“ruby”: ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0]
“ping textmate.org”:
PING textmate.org (178.79.137.125): 56 data bytes 64 bytes from
178.79.137.125: icmp_seq=0 ttl=55 time=27.026 ms
“ping github”:
PING github.com (207.97.227.239): 56 data bytes 64 bytes from 207.97.227.239:
icmp_seq=0 ttl=54 time=107.941 ms
OS X 10.6.5 (Intel)
Ideas welcome, thanks.
--
FredB
Hi all,
when writing tex files, all the sections marked with \section{} are shown in that kind of "pop up menu" on the bottom right of the TM window.
Is there a way to mark certain lines in a Plain Text file, so that they will be shown in the same way?
Thanks in advance
--
Christian
-It's better to be a pirate than to join the Navy.-
John Sculley and John A. Byrne, 1987
Definitely the theme for the weekend...found another missing key binding.
In a project, when you right-click in the project drawer, there is the option to create a new folder. Up until now, this has the shortcut Command-Control-G listed next to it. This would only work if you initially right-clicked, then pressed the shortcut, but it appears that this binding has been a victim of the recent update as well.
Any way to get it back through editing the key bindings file? Or another solution?
Thanks,
+dru
Hi All,
I'm a new user trying to figure out a good pipeline for R/Latek/Sweave.
Works great for me, except it crashes TextMate after rendering the PDF!
Lots of information below and attached. It seems like a TextMate problem
(and I've sent off a bug report) but thought someone here might have some
insight.
Any thoughts?
Thanks!Alex
PS: I noticed a spam ad for payday loans on the wiki, so I deleted it. If
any of you guys need payday loans, I apologize!
*Reproduce:*
- Install TextMate,R,Latek,R/Latek/Sweave bundles
- Use TextMate to render Example.Rnw (below).
- TextMate does an admirable job, producing the correct PDF.
- After this, the PDF window shows a spinning cursor in the top-right, and
crashes after ~10s.
Both TextMate and the PDF window respond normally during this time. Crash
occurs even if I close the PDF window!
*Attached for diagnostics:*
Crash log:
Crash Report.txt
Sample of TextMate process from just before executing Example.Rnw until
after the crash:
Exited process_6469.FdDN5T.sample
Console Errors
11/19/10 2:24:40 PM defaults[6774] The domain/default pair of
(com.macromates.textmate.webpreview, SelectedTheme) does not exist
11/19/10 2:25:09 PM com.apple.launchd.peruser.1987805519[4483]
([0x0-0x94094].com.macromates.textmate[6629])
Job appears to have crashed: Segmentation fault
*Example .Rnw file from the Sweave manual*
from:
http://cran.r-project.org/web/packages/pgfSweave/vignettes/pgfSweave.pdf
\documentclass[a4paper]{article}
\title{Sweave Example 1}
\author{Friedrich Leisch}
\begin{document}
\maketitle
In this example we embed parts of the examples from the
\texttt{kruskal.test} help page into a \LaTeX{} document:
<<>>=
data(airquality)
kruskal.test(Ozone ~ Month, data = airquality)
@
which shows that the location parameter of the Ozone distribution varies
significantly from month to month. Finally we include a boxplot of the data:
\begin{center}
<<fig=TRUE ,echo=FALSE >>=
boxplot(Ozone ~ Month, data = airquality)
@
\end{center}
\end{document}
*>> note: delete library(ctest) from the original example to run.*
*My installation (all of this as of 10.11.19)*
- Installed: "R version 2.12.0 (2010-10-15)"
- MacTex basic from
http://mirror.unl.edu/ctan/systems/mac/mactex/mactex-basic.pkg.zip
- TexMate from : http://download.macromates.com/TextMate_1.5.10.zip
- Installed R,Latex,and Sweave bundles as per:
http://www.r-bloggers.com/setting-up-textmate-to-use-r/, ie.,
mkdir -p /Library/Application\ Support/TextMate/Bundles
cd /Library/Application\ Support/TextMate/Bundles
svn co http://svn.textmate.org/trunk/Bundles/R.tmbundle
svn co http://svn.textmate.org/trunk/Bundles/Latex.tmbundle
svn co http://svn.textmate.org/trunk/Bundles/SWeave.tmbundle
- Got around the Sweave.sty problem by
mkdir -p ~/Library/texmf/tex/latex
cd ~/Library/texmf/tex/latex
ln -s /Library/Frameworks/R.framework/Resources/share/texmf Sweave
... as per somewhere.
---
Alex Vaughan
HHMI, Janelia Farm Research Center
Dept. of Biology, Stanford University
Email :: avaughan(a)stanford.edu
Phone :: 510 717 6010
---
If you have a file that starts like
%!TEX TS-program = /usr/bin/env TEXINPUTS=./Macros:./Figures::
pdflatex
You get an error when you compile. The offending line in texMate.py is
stat = os.system('type '+engine+' > /dev/null')
which doesn't seem particularly useful anyway, but could easily be fixed
(and I have in my copy!) by doing something like:
stat = os.system('type '+ engine.split()[0] +' > /dev/null')
A more meta question is whether this hack is a good idea, since it defeats
the kpsewhich checks in files included in ./Macros. I use it mostly because
the other place to put all this would be in a TM project, making it hard to
collaborate with TeXShop users. Does anybody have a better idea?
^L
--
Louis Theran
Research Assistant Professor
Math Department, Temple University
http://math.temple.edu/~theran/
+1.215.204.3974
Hi,
I have configured Textmate to display the results of my Groovy scripts as a
tooltip (as opposed to displaying them in a separate popup window). The
problem I have as that I need to first save the script before I can run it
and view the results as a tooltip (otherwise the results of the saved script
gets returned). Is there a way to configure Textmate so I can display the
results as a tooltip without having to first save my script?
Thanks,
Jeff
Sorry for the off-topic.
But the unsubscribe and change password options up at
http://lists.macromates.com/listinfo/textmate do not work. They say that a
confirmation mail has been sent, but it never arrives. I cannot for the
life of me remember my password, so I'm stuck.
Any help is appreciated.
Chris G.
On 19 November 2010 03:14, <textmate-request(a)lists.macromates.com> wrote:
> Send textmate mailing list submissions to
> textmate(a)lists.macromates.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.macromates.com/listinfo/textmate
> or, via email, send a message with subject or body 'help' to
> textmate-request(a)lists.macromates.com
>
> You can reach the person managing the list at
> textmate-owner(a)lists.macromates.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of textmate digest..."
>
>
> Today's Topics:
>
> 1. Re: How to Handle Odd Quotes (Ben Wilson)
> 2. My dearest wish for TextMate, present or future :) -
> resizable project window fonts (Chris Patti)
> 3. setMark and swapWithMark (Bastien Dejean)
> 4. Re: ppc? (Tony Dew)
> 5. Re: 1.5.10 (1616) Ruby command-R broken again (Peter Wilkins)
> 6. Perl regexp highlighting errors (Karel B?lek)
> 7. Re: Crashing more then usual? (Luke Daley)
> 8. Re: Crashing more then usual? (Joshua Kehn)
> 9. Systematic Help Menu Crash (Bastien Dejean)
> 10. Re: My dearest wish for TextMate, present or future :) -
> resizable project window fonts (Dave Baldwin)
> 11. Re: Turning on comments after update (Karel B?lek)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 18 Nov 2010 12:10:33 -0500
> From: Ben Wilson <dausha(a)gmail.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Re: How to Handle Odd Quotes
> Message-ID:
> <AANLkTin_o-6tJKPJy95uZRbazsn2WzyfDptbjvAkaZ-A(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Thanks. I'll give that a go.
>
> I did get something to work; but I expect it to be messy. I added a
> snippet that turns a single double quote (one double quote) and
> expands to ``". This is working with my novel writing.
>
> I'm writing in Markdown...but I wrote a Ruby gem that provides rake
> commands that converts the Markdown into LaTeX, then compiles using
> pdflatex. I'm in NaNoWriMo, and agumenting my rake tasks as
> appropriate, and will later improve the gem then create a bundle that
> implements those tasks. I'm happy in the terminal world (CLI and vim);
> though TextMate is a close 2d.
>
> I have to say, though, when I occasionally switch to vim, I'm reminded
> why it's been my preferred editor for a decade. This is not a
> detraction to TextMate. They say to become an expert you need to spend
> 10,000+ hours practicing/using. Assuming 1/2 my professional time was
> in vim, that's just about 10,000 hours; but then I have countless
> weekends pounding away. So, I'll say I have around 15,000 hours in
> vim, and probably 200 in TextMate. And, I know it's not fair to
> compare with that much of a skill discrepancy.
>
> On Mon, Nov 15, 2010 at 11:57 AM, Justin Catterall
> <100621.1(a)masonsmusic.co.uk> wrote:
> >
> > On 11 Nov 2010, at 18:37, Ben Wilson wrote:
> >
> >> Thanks. I started by turning off the "Auto-Pair characters" in
> >> Preferences. I'm writing a novel and am using ``dialog" to demark
> >> dialog. So, I guess the next thing is a snippet...
> >
> > You're not writing it in LaTeX are you? That uses the same quoting
> method,
> > though I do have to hit ` twice to get ``'' and the cursor between.
> >
> > You might want to create your own bundle and dig those quotes out of
> either
> > the LaTeX or TeX bundles and add them to yours.
> >
> > Looking further, it your document type is LaTeX and you hit Ctrl+` that
> > wraps a selection in double quotes. Some interesting stuff in there.
> >
> > --
> > Justin C, by the sea.
> >
> >
> > _______________________________________________
> > textmate mailing list
> > textmate(a)lists.macromates.com
> > http://lists.macromates.com/listinfo/textmate
> >
>
>
>
> --
> Ben Wilson
> "We cannot determine the character or nature of a system within
> itself. Efforts to do so will only generate confusion and disorder."
> Boyd
>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 18 Nov 2010 14:24:20 -0500
> From: Chris Patti <cpatti(a)gmail.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] My dearest wish for TextMate, present or future :) -
> resizable project window fonts
> Message-ID:
> <AANLkTim3eLdNJCpXkinW1u3m8PY39-Joctkn+Pi4dxCP(a)mail.gmail.com<AANLkTim3eLdNJCpXkinW1u3m8PY39-Joctkn%2BPi4dxCP(a)mail.gmail.com>
> >
> Content-Type: text/plain; charset=UTF-8
>
> I'm partially blind, and constantly find myself squinting and
> straining to see what I'm selecting in the project window (Which is
> one of TM's strengths IMO).
>
> I've tried using
> http://headfirstproductions.ca/modifying-textmate-drawer-font-size/ ,
> but my lack of familiarity with IB and XCode has left me unable to
> actually make this work reliably.
>
> I would pay another $20-30 for this one feature alone.
>
> -Chris
>
> --
> Christopher Patti - Geek At Large | GTalk: cpatti(a)gmail.com | AIM:
> chrisfeohpatti | P: (260) 54PATTI
> "Technology challenges art, art inspires technology." - John Lasseter,
> Pixar
>
>
> ------------------------------
>
> Message: 3
> Date: Thu, 18 Nov 2010 22:36:08 +0100
> From: Bastien Dejean <eschyle(a)gmail.com>
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] setMark and swapWithMark
> Message-ID: <D3CE2D46-C698-4006-9FD4-1DA5DBBC8B61(a)gmail.com>
> Content-Type: text/plain; charset=us-ascii
>
> Hi,
>
> TextEdit responds successfully to the aforementioned cocoa text commands
> but TextMate (1623) doesn't.
>
> Thanks.
>
> ------------------------------
>
> Message: 4
> Date: Fri, 19 Nov 2010 00:16:47 +0000 (UTC)
> From: Tony Dew <tdew(a)supergraphics.ca>
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Re: ppc?
> Message-ID: <loom.20101119T011600-873(a)post.gmane.org>
> Content-Type: text/plain; charset=us-ascii
>
> Michael Sheets <mummer@...> writes:
>
> > Sorry we had the intel only build up for about 30 minutes by accident,
> re-downloading from the website will
> > give you the proper universal build:
> >
> > http://download.macromates.com/
>
> Yes, a download and reinstall seems to have fixed the issue. Thanks!
>
>
>
> ------------------------------
>
> Message: 5
> Date: Thu, 18 Nov 2010 20:55:39 -0500
> From: Peter Wilkins <pwilkins.mit(a)gmail.com>
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: [TxMt] Re: 1.5.10 (1616) Ruby command-R broken again
> Message-ID:
> <AANLkTi=ONfvS=0wWS3cZ6mfK0zZQHxQpR6ROoH7kxMze(a)mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> My apologies. I'm unable to reproduce the problem. (The problem I
> experienced is a repeat of ticket
> FAB08510<http://ticket.macromates.com/show?ticket_id=FAB08510>
> .)
>
> /peter
>
> On Tue, Nov 16, 2010 at 10:55 AM, Allan Odgaard <mailinglist(a)textmate.org
> >wrote:
>
> > On 16 Nov 2010, at 16:51, Peter Wilkins wrote:
> >
> > > Upon upgrading to 1.5.10 (1616) my command-R short-cut is broken again.
> >
> > How is it broken? What happens when you press it?
> >
>
Hi there -
Have discovered a bug in the project drawer:
If you are editing a file within a subfolder of a project and you "save as" to another subfolder, then MissingDrawer behaves as if the file has been renamed... (the original file is hidden and the new file is displayed in the original folder (as well as the real folder).
The only way to remedy this is by closing and reopening this project.
(Happens with and without Missing Drawer, originally reported as missing drawer bug https://github.com/jezdez/textmate-missingdrawer/issues/issue/28)
PS - is there an online issue tracker/bug reporter for TextMate?
thanks
Tim
Tim Diggins
http://red56.co.uk
I will add to the latest chain of messages with key binding problems
after last update.
I was constantly using cmd + / for commenting/uncommenting in code.
However, on Czech Mac keyboard, / is under shift on the same key as
"ú" and "[", so I had to use cmd-shift-ú.
Now, it just jumps into help menu for some reason.
I would change the key binding in System Preferences - however, I
can't find toggling comments in any menu!
This is very frustrating, since I love the commenting/uncommenting
feature and I can't find any way to use it. And I guess all Czech
users have it the same.
(the czech layout on PCs is here -
http://en.wikipedia.org/wiki/File:Keyboard_layout_Czech.svg - but as
always, macs have it a bit different. the ú-/-[ key is next to P.)
Karel Bílek
Especially when I'm working with Groovy / Grails Server Pages TextMate seems to crash almost regularly. Sometimes I can catch it because I'll notice it has lost syntax highlighting after a certain point, so I can do further editing in VIM.
I'm not getting anything in my console logs in relation to TM.
Regards,
-Josh
____________________________________
Joshua Kehn | Josh.Kehn(a)gmail.com
http://joshuakehn.com
I understand that parsing perl must be pain in ***, but I got some
errors in perl highlighting.
When I write
if ($a =~/ /)
to check, wether there is a space in a word, what happens is that
everything after the second / is treated like a regexp (so, the whole
script becomes green).
When I write the same thing as
if ($a =~ /\ /)
everything work as expected.
I discovered a similar problem with perl bundle some months ago: when I write
$something = $a/$b + $c/$d;
the /$b + $c/ part is highlighted as a regexp, too. Writing a space
between the first / and $ makes it go away.
And the last thing - when I write
for my $file (<data/directory/*>)
to iterate trough all the files in "data/directory/", the /directory/
is, again, highlighted as a regexp.
Best regards,
Karel Bílek
Upon upgrading to 1.5.10 (1616) my command-R short-cut is broken again.
Yes, I know, I know. It is marked "changed" in the release notes, the
interactive dylib is nowhere on my machine and the interactive disabled
shell variable is set to "true". It worked properly before I upgraded and
now it is broken again.
I've read the forum threads and as near as I can tell, what is happening
should be impossible. Anyone have any suggestions?
Thank you for your help,
Peter
Is the latest (cutting edge) version of textmate intended to run on a
PPC? After updating it today, textmate gives me a "You cannot open the
application "TextMate" because it is not supported on this
architecture" message on my PowerPC G5 (3.1) when I try to open it.
Kyle Johnson