Hi,
when writing in languages using accents (e.g. italian)
one frequently types \`e or \`o (or \"u etc).
The LaTeX bundle has the annoying habit of doubling
the ticks or backticks (or the double quotes) even
immediately following a backslash \
This seems inappropriate; the sequences \`' and
\"" have no use I presume. Is it possible to keep
the doubling of ticks except when immediately
following a backslash? I know I can disable the
doubling completely, but I would like to keep it in
other cases.
Thanks,
Piero
Hi!
How do I navigate from a method call to the declaration of said method?
In xCode I would command-double-click the method call.
BTW, I am new to the list and am just re-discovering TextMate. I had
looked at it once before. At that time it lacked the one key feature
for me: code completion. Now it is a killer app!
Pierre
---
Pierre Bernard
http://www.bernard-web.com/pierrehttp://www.houdah.com
Hi!
When working on a file, I would at times like to switch back to xCode
to:
- set a breakpoint
- use the better code sense implementation
- ...
I see no such feature.
TIA,
Pierre
---
Pierre Bernard
http://www.bernard-web.com/pierrehttp://www.houdah.com
Hi to all,
Small side question regarding the focus toggling between Drawer and window.
After the first toggle ctrl shift, the shortcut doesn't get me back to
the editing window using the same shortcut at the curser.
I was wondering,may be if it is expected, or something broken from my side.
regards, marios
Hello,
Is there an existing command to run "make" in the current directory,
or should I make one?
I'm working on a LaTeX paper with sereval people who use emacs, and
the building process is done using a Makefile. I looked at the LaTeX
"Typeset and View" in the bundle editor, but it seems that it's
always adding options to TM_LATEX_COMPILER and cannot simply be used
to call make. (I may have missed something there, I'm a fairly new
TextMate user).
Thanks for any suggestion.
Alan
--
Alan Schmitt <http://alan.petitepomme.net/>
The hacker: someone who figured things out and made something cool
happen.
.O.
..O
OOO
Hi,
I'm fairly new to TextMate - I use it to develop Java applications
and my website in an academic enviornment. I followed directions on
the TM website to make TM my default Cocoa Text Field editor in OS X
(from here: http://macromates.com/textmate/manual/
using_textmate_from_terminal). I press splat + ctrl + E in nearly
any application* and I can edit the field with TM. This is a
fantastic feature to which I have grown addicted.
However, I find myself ssh-ing into servers around campus and I can't
use TM to edit files in the shell (since the EDITOR variable is
obviously local to my machine). Is it possible in my .bash_profile
on remote servers to open files in my local TM? This would be great...
I'll conclude by saying that I have very little *nix knowledge, so
please be gentle!
Thank you for your help - I've learned a lot on this list.
- Jerzy G.
*Firefox text boxes don't seem to work - I presume it's not a Cocoa
text field?
Hi guys,
I just started to reuse LaTeX again, there's been a lot of really
great things going on since the last time I used it, so awesome job!
I like how you've added the (fold/end) markers for each section/
subsection, but might I suggest adding the text in \label to the
"end" part of the snippet, so as to remind the user what section they
are looking at the end of?
So, currently the section snippet looks like:
\section{${1:section name}}\label{sec:${2:${1/(\w+)|\W+/(?1:\L$0:_)/
g}}} % (fold)
${0:$TM_SELECTED_TEXT}
% section (end)
I'm thinking something like this (which works w/o damaging anything)
% section ${2} (end)
But for some reason I find this more handy (which unfortunately hoses
the folding):
% section (end:${2})
It's easy enough for me to keep it in my own bundle, but I figured
others may find this useful as well.
What do you think?
-steve
Hello,
A while ago, I was told that I could specify what latex command get
run when I "rebuild" a latex file using the "TM_LATEX_COMPILER"
project option. Unfortunately the only place I found where I can
specify shell variables is in the global preferences, and I would
like of course such variables to be project dependent. Is there a way
to do so?
Another thing I would like is to keep the "compiling" window open, so
that I can look at the warnings and messages (right now it closes
after compilation). I could not find this window in the "Window"
menu. How can I keep it open?
Thanks,
Alan
--
Alan Schmitt <http://alan.petitepomme.net/>
The hacker: someone who figured things out and made something cool
happen.
.O.
..O
OOO
The 'constant_placeholder' definition incorrectly matches the '%s' in
a literal string '%%s' and highlights it; it should match the '%%'.
Fix: in the constant_placeholder definition, change:
match = '%(\([a-zA-Z_]+\))?(0|\-|\+)?([0-9\.]*)?[diuoxXfeEgGsrc]';
to:
match = '%(\([a-zA-Z_]+\))?(0|\-|\+)?([0-9\.]*)?[diuoxXfeEgGsrc%]';