Hi,
the latest release of Textmate introduce a new Change next/previous file tab key equivalents that is shift command [ and ]. However, to acced the [ on French keyboard, you already have to press shift + option + ( So for exemple, to indent, you have to press cmd + [ that is on the French keyboard cmd + shift + option + ( With this shortcut, i can't indent the text with a key equivalent, and it's very very unpleasant. We had the same problem with Indent Selection key equivalent cmd + option + [
Is there an option or something to change shortcut or to resolve this problem ?
Ronan
PS : Anyway, thx for this new release !
On 13 Nov 2010, at 13:56, Capripot wrote:
[...] Is there an option or something to change shortcut or to resolve this problem ?
Use System Preferences → Keyboard → Application Shortcuts to change the binding.
The motivation behind the change was that it seemed to be what Apple is gravitating toward (Terminal, Safari), though both those apps have multiple keys and are not fixed accross locale.
So I may decide to bring back ⌥⌘←/⌥⌘→ as alternative keys, though for now users will have to manually make the change in System Preferences.
Sorry about the inconvenience.
Have the same problem, shortcuts with [ don't work on French Macs, [ is hidden under SHIFT
I used to indent with OPTION TAB and to outdent with SHIFT OPTION TAB, now SHIFT OPTION TAB deletes ...
I added CMD 5 to outdent, but, well it's less convenient
On Sat, Nov 13, 2010 at 1:56 PM, Capripot capripot@gmail.com wrote:
Hi,
the latest release of Textmate introduce a new Change next/previous file tab key equivalents that is shift command [ and ]. However, to acced the [ on French keyboard, you already have to press shift
- option + (
So for exemple, to indent, you have to press cmd + [ that is on the French keyboard cmd + shift + option + ( With this shortcut, i can't indent the text with a key equivalent, and it's very very unpleasant. We had the same problem with Indent Selection key equivalent cmd + option + [
Is there an option or something to change shortcut or to resolve this problem ?
Ronan
PS : Anyway, thx for this new release !
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On 13 Nov 2010, at 14:39, Thomas Traub wrote:
[...] I used to indent with OPTION TAB and to outdent with SHIFT OPTION TAB, now SHIFT OPTION TAB deletes ...
This was an unintended change due to the updated code for deciphering key events.
For now open TextMate.app/Contents/Resources/KeyBindings.dict and add this binding:
"~$\t" = "shiftLeft:";
This will restore “shift left” to ⌥⇧⇥.
Great, got it working,
Thanks
On Sat, Nov 13, 2010 at 2:41 PM, Allan Odgaard mailinglist@textmate.orgwrote:
On 13 Nov 2010, at 14:39, Thomas Traub wrote:
[...] I used to indent with OPTION TAB and to outdent with SHIFT OPTION
TAB, now
SHIFT OPTION TAB deletes ...
This was an unintended change due to the updated code for deciphering key events.
For now open TextMate.app/Contents/Resources/KeyBindings.dict and add this binding:
"~$\t" = "shiftLeft:";
This will restore “shift left” to ⌥⇧⇥.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On Nov 13, 2010, at 5:41 AM, Allan Odgaard wrote:
For now open TextMate.app/Contents/Resources/KeyBindings.dict and add this binding:
"~$\t" = "shiftLeft:";
This will restore “shift left” to ⌥⇧⇥.
Thanks...I guess I was reading these messages in reverse order (after they stacked up over the weekend). Glad I caught this nugget amongst all of the other cries for help.
I might point out that it seems that making this change in Property List Editor is not the way to go; the backslash gets escaped and you end up with "~$\t". Either open the file in TextMate (which just feels like a time paradox or something) or, I would imagine, try typing "~$ " in Property List Editor, where the white space there is a tab, which would entail typing Option-Tab to get a tab character and not tab over to the Value column.
+dru