Re: [Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Guillermo Polito
> On 14 dic 2015, at 12:38 p.m., Peter Uhnak wrote: > > ve, I would propose to > actually use "$= ctrl" for zooming in. But that is layout dependent :).

Re: [Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Stephan Eggermont
On 14-12-15 12:38, Peter Uhnak wrote: But since that's how most applications behave, I would propose to actually use "$= ctrl" for zooming in. That's an interesting bug. I notice Safari, FireFox and Chromium have the bug. They explicitly state in the menu that the key combination is ctrl-+, r

Re: [Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Peter Uhnak
On 12/14, Guillermo Polito wrote: > > > On 14 dic 2015, at 11:23 a.m., Nicolai Hess wrote: > > > > > > > > 2015-12-14 11:16 GMT+01:00 Stephan Eggermont > >: > > On my keyboard I have '+' in two positions: once over the '=' in the > > alphanumeric part,and once as a s

Re: [Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Stephan Eggermont
On 14-12-15 12:13, Guillermo Polito wrote: So you mean that in order to make + in your +/= key you must press shift? And then (ctrl +) does not match (ctrl shift +)? Indeed. Then I’d say it is a bug/unimplemented feature... Hmm, maybe shift only has to work as a modifier for alphanumeric cha

Re: [Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Guillermo Polito
> On 14 dic 2015, at 11:23 a.m., Nicolai Hess wrote: > > > > 2015-12-14 11:16 GMT+01:00 Stephan Eggermont >: > On my keyboard I have '+' in two positions: once over the '=' in the > alphanumeric part,and once as a separate key on the numeric part. > When I do a > >

Re: [Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Nicolai Hess
2015-12-14 11:16 GMT+01:00 Stephan Eggermont : > On my keyboard I have '+' in two positions: once over the '=' in the > alphanumeric part,and once as a separate key on the numeric part. > When I do a > > self bindKeyCombination: $+ command mac | $+ ctrl win | $+ ctrl unix > toAction: [ self incr

[Pharo-users] Keymapping, shift vs non-shift

2015-12-14 Thread Stephan Eggermont
On my keyboard I have '+' in two positions: once over the '=' in the alphanumeric part,and once as a separate key on the numeric part. When I do a self bindKeyCombination: $+ command mac | $+ ctrl win | $+ ctrl unix toAction: [ self increaseFontSize ]. that only works for the numeric '+'. Is