Please,
For the love of god, children and animals, can we please get indented soft
wrapping as a standard feature of Textmate 2. I just don't understand why
such a useful yet trivial feature that's common to just about every text
editor has not been included in what is supposed to be the holy grail of
text editors.
There's an 8 year old ticket for it, not to mention all the duplicates:
http://ticket.macromates.com/show?ticket_id=4EFB31A8
Do a google search for this, and you find people applying the same dodgy
fix to individual bundles; what a waste of time for everyone involves. Can
we not just get this feature added and be done with it.
Thanks,
Tom
Date: Fri, 17 Jan 2014 16:08:36 +0700
From: "Allan Odgaard"<mailinglist(a)textmate.org>
To: "TextMate users"<textmate(a)lists.macromates.com>
Subject: [TxMt] Re: when sending code to R.app textmate 1 and 2 both
Message-ID:<3D9202F3-4409-4616-8C91-022E216F188A(a)textmate.org>
Content-Type: text/plain; charset=utf-8; format=flowed
On 17 Jan 2014, at 11:13, Kevin Owens wrote:
> [?] I think it may be related to the lines in that command like
>
> "open"txmt://open?line="
Yes, that would go to whatever version of TextMate is responsible for
handling the txmt URL scheme.
The bundle should call ?mate? instead.
For 2.0 you can use:
"${TM_MATE}" -l ?line?:?column?
For a version that should work with both, use:
"${TM_MATE:-$TM_SUPPORT_PATH/bin/mate}" -l ?line?
If you can confirm this works, we can update the bundle accordingly.
______
I can confirm that this works. Here's the meat of what i changed:
if [ "$TM_LINE_NUMBER" != "" ]; then
open "${TM_MATE:-$TM_SUPPORT_PATH/bin/mate} -l ?line?&column=1000000" &
elif [[ $TM_SELECTION =~ [1-9][0-9]*:?[0-9]*-([1-9][0-9]*):?[0-9]* ]]; then
# Regular Selection
open "txmt://open?line=$((${BASH_REMATCH[1]}+1))&column=1000000" &
elif [[ $TM_SELECTION =~ [1-9][0-9]*:?[0-9]*x([1-9][0-9]*):?[0-9]* ]]; then
# Block (option) selection
open "txmt://open?line=$((${BASH_REMATCH[1]}+1))&column=1000000" &
else
open "txmt://open"
fi
Hello,
I’ m trying to clean the .nav, .snm, .mtc and .gz files which appear when i compile a latex document. I read that i have to modify the testate.py file but I don’t find it. Could you help me?
System : OSX 10.9.1
Texmate 2.0-alpha.9503
Best regards
PS : (sorry for the bad english)
.............................................................................................
jimmy ROUSSEL
Professeur de Physique
Responsable de l'interclassement
Ecole Nationale Supérieure de Chimie de Rennes
11 allée de Beaulieu CS 50837
35708 Rennes cedex 7, France
Université Européenne de Bretagne
Tel 33 (0)2 23 23 80 53
.............................................................................................
In TM2, the behavior of command-i is unexpected, and I believe different than in TM1.
Minimal example: Language grammar is LaTeX, cursor is at the pipe (|) in the following text, and I press command-i.
one | two
Expected result: one \emph{|} two
with cursor at pipe
Actual result: one\emph{ }|two
with cursor at pipe
Thanks, and I apologize if there’s a legitimate reason for this result which I don’t know about!
Christopher Eliot
Brooklyn, NY