Re: [Factor-talk] Why does editor pass some handled gestures?

2015-08-19 Thread Georg Simon
Thank you. Sorry for the wrong syntax. Now it seems to me that editor receives both C+c and copy-action when I type C+c. With http://paste.factorcode.org/paste?id=3590#1634 I see that - UP is not handled and passed to parent as I would expect - DELETE is handled and not passed to parent as I

Re: [Factor-talk] Why does editor pass some handled gestures?

2015-08-19 Thread Jon Harper
Hi Georg, You have 2 problems in IN: scratchpad T{ key-down f f C+c } editor get-gesture-handler . f First, see http://docs.factorcode.org/content/article-keyboard-gestures.html for the correct syntax: IN: scratchpad T{ key-down f { C+ } l } editor get-gesture-handler . [ \ select-line