Thanks for the hint.
I've experimented more than a couple of things and found the following
settings works for me, at least it's much better than broken.
Under 'Budles' => 'Edit' => 'Settings' => 'Indenting':
{ disableIndentCorrections = :true;
indentOnPaste = 'simple';
foldingStartMarker = '^\s*"""(?=.)(?!.*""")';
foldingIndentedBlockStart = '^\s*.*(:|-) ?(&\w+)?(\{[^}"'']*|\([^)"'']*)?$';
foldingIndentedBlockIgnore = '^\s*#';
}
foldingStartMarker was copied from Python setting.
foldingIndentedBlockIgnore was copied from the 'Fold on the Dotted Line'
section in http://blog.macromates.com/2012/the-layout-engine/
If I hold down ALT, I can use the mouse to select a rectangular block of
text
Just wondering if there is any way to do this using solely the keyboard?
Thanks
Hi,
When using the US-International keyboard layout, if you want to enclose selected text with quotes, single quotes or back-quotes by typing them, the originally selected text is deleted.
Those keys are used for diacritical accents by the US-International layout and require two keystrokes, the quote character itself followed by either a space to indicate you actually want the quote character itself, or a different character if you want to apply the diacritical accent on it. For instance a single quote ' followed by an a gives á. If the quote character is followed by a character that doesn't accept diacritical accents then the layout issues the two characters as they were typed, so a " followed by a w gives "w
I do most of my programming using the standard US layout but sometimes I need to switch to spanish or french.
A really insignificant bug, I know :p and I can certainly live with it, so this is mostly for information. It's good to know someone knows it's there :-)
Gualo
Textmate gets frozen for 15 seconds and then throws
```
JavaScript Warning
The command ‘ruby18 "/Users/igor1043k/Library/Application Support/TextMate/Managed/Bundles/Git.tmbundle/Support"/dispatch.rb "controller=log" "action=open_revision" "file_path=/Users/igor1043k/git/Bilbeo/Application/DataAPI/libs/models/Workspace.js" "revision=9201f304"’ has been running for 15 seconds. Would you like to stop it?
To avoid this warning, the bundle command should use the asynchronous version of TextMate.system().
```
This bug is very old and it looks like no one but me uses this feature. Maybe someone with ruby knowledge can fix this thing?
Thanks.
First, I like new commit window/sheet, very nice.
Second. it seems I cannot close the sheet with a keyboard shortcut if
there's a commit message present. Is that intentional? Note that when
amending there's always a commit message.
--
/Jacob Carlborg
A while ago, I reported a text field visibility bug in the Search & Replace window, and after updating to alpha.9565, I noticed it’s back.
When you bring up the Search & Replace window, anything you type in the search or replace text fields will not appear until you bring up the Search & Replace window again (e. g. by aborting and pressing Command + F again).
Does anyone else see that behavior?
Max
Is it possible to offer the Dockerfile bundle as part of the TextMate
config options? I think there's enough popularity (at least momentum)
behind Docker to make this worthy of being listed on the master list.
https://github.com/docker/docker/tree/master/contrib/syntax/textmate
Ken
I have a recurring problem where TM cannot detect file changes.
This is because I work on a a remote filesystem (Centos), which is mounted
via AFP.
Its actually a VM running on ESXI Server on my LAN, although a Vagrant or
VMWare setup is quite common now.
>From what I understand, TM uses kqueue or BSD's FSEvents for file
notifications (I suspect kqueue?).
Its causing me a lot of problems as I switch git branch and TM doesn't
always detect it, sometimes resulting in a file from another branch being
saved over the top.
A bit of googling shows there is libkqueue, which tries to provide a kqueue
interface on top of the underlying host OS, but its not clear to me whether
this would be suitable for a remote fs, even if it was feasible to compile
into TM.
Has anyone found a workaround to this please?