http://stackoverflow.com/questions/20594226/textmate-2-smart-typing-pairs-f…http://stackoverflow.com/questions/22856490/textmate2-how-to-put-spaces-bet…
I've noticed that these 2 questions remain un-answered. I attempted to open the bundle editor for source, text, ruby, and scss and made changes to the various smartTypingPairs objects but was unable to create change in how TextMate operates. I tried the actual fixes for these peoples problems, deleting the pair in one, and modifying the ruby pairs, I even tried ['a':'b'], but typing a didn't append a b.
Are there known issues with smart typing pairs, or perhaps was I looking in the wrong location?
Thanks,
--
graham.p.heath(a)gmail.com
If I go to a line using Navigate > Go to Symbol (shift + command + T), the
line I go to could potentially be positioned anywhere on the page. Sometimes
it is near the bottom of the page, sometimes near the middle. Is it possible
to always position the line at the top of the page?
Thanks
Ross
As I've complained here before, it disturbs me that that my AsciiDoc single-line (double-slashed) comments are affected by the Source bundle's soft-wrap indenting:
{ indentedSoftWrap = {
match = '.*(//?)\s+';
format = '${0/(\s*)(.{,4}).*/$1${2/./ /g}/}';
};
softWrap = :true;
}
My comments are comment.line.double-slash.asciidoc, so they fall under the purview of the Source bundle's setting for comment.line.double-slash.
I have considered changing the scope name of my comments in order to evade this, for example to comment.line.doubleslash.asciidoc (no hyphen). That works.
However, I've just discovered that I can do it with a settings file like this:
{ indentedSoftWrap = {};
softWrap = :true;
}
That "shelters" me from the inherited soft-wrap indenting, which is what I was trying to achieve. m.
--
matt neuburg, phd = http://www.apeth.net/matt/
pantes anthropoi tou eidenai oregontai phusei
Programming iOS 7! http://shop.oreilly.com/product/0636920031017.do
iOS 7 Fundamentals! http://shop.oreilly.com/product/0636920032465.do
RubyFrontier! http://www.apeth.com/RubyFrontierDocs/default.html
Last month I asked how to select some text and press a keyboard shortcut
that would send the selected text to R app:
http://lists.macromates.com/textmate/2014-March/037158.html
This is working excellently well. I¹m interested in extending this, but
cannot figure out how to set it up.
Lets say I have this code:
summary(lm(mpg ~ drat + hp, mtcars))
How can select 'mtcars¹ and hp¹ simultaneously, press a keyboard shortcut
and run this code in R app:
mtcars$hp
Similarly, in this code:
ddply(mtcars, .(cyl), summarise, mean(mpg))
How can select 'mtcars¹ and mpg¹ simultaneously, press a keyboard shortcut
and run this code in R app:
mtcars$mpg
Thanks
Ross
I've since found out you can reply to a thread from the website, by
clicking the authors email
Theres enough info in the mailto link to allow it to be threaded
Moot point now though, since I've changed to individual mails like you
suggest :)
>
> ---------- Forwarded message ----------
> From: "Allan Odgaard" <mailinglist(a)textmate.org>
> To: "TextMate users" <textmate(a)lists.macromates.com>
> Cc:
> Date: Fri, 04 Apr 2014 08:42:30 +0700
> Subject: [TxMt] Re: Strange clipboard bug
> On 4 Apr 2014, at 5:43, Carpii UK wrote:
>
>>
>> Finally if someone could explain how to correctly reply to a reply using
>> this mailing list, that'd be much appreciated. I'm finding the email
>> interface to this list just a little archaic.
>>
>
> If you have subscribed to this list you will get an email that you can
> reply to, just like normal email.
>
> If you are using some (third party) web interface then I don't know what
> their procedure is.
>
>
Thanks, I'll give this a try...
The emails I get are in daily digest format, so it wasn't clear which bits
I need to leave intact so the mailing list can thread it.
Using tm 2.0-alpha.9529 and OSX 10.9.2
I've had this a few times, where I am coding and I cut a short piece of
text, and immediately repaste it elsewhere.
But instead of pasting the clipboard, it pastes the single word
"AMQPChannel" in its place. This seems to be something related to RabbitMQ,
although I don't understand much else about why it would occur.
Any suggestions?
Does textmate embed rabbitMQ, or could it be related to a bundle?
Finally if someone could explain how to correctly reply to a reply using
this mailing list, that'd be much appreciated. I'm finding the email
interface to this list just a little archaic.
Thanks
When running cmd+r (Typeset & View) I get the following message:
This command requires ‘kpsewhich’ which wasn’t found on your system.
The following locations were searched:
/usr/texbin
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin
/opt/X11/bin
/usr/texbin
If ‘kpsewhich’ is installed elsewhere then you need to set in Preferences
→ Variables to the full path of where you installed it.
In Preferences --> Variables I have created a PATH which the definition:
/usr/texbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/texbin
I have quite and opened TM. Same thing.
Any help would be appreciated.
--
View this message in context: http://textmate.1073791.n5.nabble.com/After-Maverick-Update-TM2-No-Longer-F…
Sent from the textmate users mailing list archive at Nabble.com.
Steps to reproduce:
open the attached file will cause textmate crash.
no matter use command line:
mate Packet.c
or File -> Open to open this file.
maybe something to do with utf8 text.
the crash log is also upload automatically by the software: https://api.textmate.org/crashes/232914
Expected result:
it shouldn’t crash!
Actual result:
crash!
Environment:
OS version----mac osx 10.9.2
TextMate version---mate 2.6 (2014-03-31 revision 9529) or TextMate 2.0-alpha.9529 is the latest version available—you have version 2.0-alpha.9529.
Hardward—macbook air 2012 Mid 11-inch
I've deleted related files in ~/Library/ and test the default setting, It still crash, so I’m sure it’s a bug of Textmate itself, not bundles.
Hi,
since I'm working with larger documents it would be nice if any user event (keyDown, museDown, etc.) could cancel the while/for-loop to find the matching bracket. [maybe in selection.cc - method: find_enclosed_range]
A simple example:
- take a file 1.2 MB and 50000 lines [plain text]
- select all
- press ( to wrap the selection into ()
- locate caret right of the first (
- move caret to the left
- it takes ca. 10 secs before TM accepts the next user event
Kind regards, Hans
PS Sorry for the sent crash report caused by an error which I did while trying something out. Is there a way to avoid sending such reports after compiling TM by myself?