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