On Apr 22, 2012, at 8:13 PM, [email protected] wrote: > May I add that some Cmd-Q on OSX really sucks for autocompletion?
indeed :) This is why ecompletion and ocompletion propose other ways > > 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. no it was like that in squeak and it always went in our way. now in Pharo20 we will change revisit all the logic of key mapping and probably use the work on guillermo to be able to plug the binding people want. I want emacs binding for text for example :) > > 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 >
