On 22 Apr 2012, at 19:13, [email protected] wrote:

> May I add that some Cmd-Q on OSX really sucks for autocompletion?
> 
> And Alt-Shift for Halos when you have multiple keyboards setup in Windows? 
> (It is the system shortcut for toggle language (like FR->EN). Using the 
> middle button like in Cuis would be much better methinks.

+1, although I don't have a middle button on my trackpad :). Cmd-click would be 
good for halos on OS X. It i recall this is used in Xcode (interface builder) 
when manipulating graphical elements etc.

> Phil
> 
> 2012/4/22 Guillermo Polito <[email protected]>
> It's supposed to do some conversions, but sometimes, it just screws up the 
> use input.   It's main responsibility is to change ctrl into alt:
> 
> installDuplicateKeyEntryFor: c
>     | key |
>     key := c asInteger.
>     "first do control->alt key"
>     KeyDecodeTable at: { key bitAnd: 16r9F . 2 } put: { key . 8 }.
>     "then alt->alt key"
>     KeyDecodeTable at: { key . 8 } put: { key . 8 }
> 
> 
> And then it confuses stuff.  For example, Ctrl + tab is decoded as ctrl + $i, 
> since
> 
> $i asInteger bitAnd: 16r9F = Character tab asInteger
> 
> 
> And btw, I love my ctrl key and want to have more fancy and sexy shortcuts, 
> so this F*** table is bothering :).
> 
> Opinions?
> Guille
> 
> 
> 
> -- 
> Philippe Back
> "Helping you hit the top 3 outcomes you really want to achieve"
> 
> Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail: [email protected] | 
> Web: http://philippeback.eu | Blog:
> http://philippeback.be
> 
> High Octane SPRL
> rue cour Boisacq 101
> 1301 Bierges
> 

Reply via email to