Only do mouse selections for button 1
parent
b504c9af47
commit
019224348b
|
@ -466,7 +466,7 @@ editor "caret-motion" f {
|
||||||
editor "selection" f {
|
editor "selection" f {
|
||||||
{ T{ button-down f { S+ } 1 } extend-selection }
|
{ T{ button-down f { S+ } 1 } extend-selection }
|
||||||
{ T{ button-up f { S+ } 1 } com-copy-selection }
|
{ T{ button-up f { S+ } 1 } com-copy-selection }
|
||||||
{ T{ drag } drag-selection }
|
{ T{ drag { # 1 } } drag-selection }
|
||||||
{ gain-focus focus-editor }
|
{ gain-focus focus-editor }
|
||||||
{ lose-focus unfocus-editor }
|
{ lose-focus unfocus-editor }
|
||||||
{ delete-action remove-selection }
|
{ delete-action remove-selection }
|
||||||
|
|
|
@ -420,7 +420,7 @@ pane H{
|
||||||
{ T{ button-down f { S+ } 1 } [ select-to-caret ] }
|
{ T{ button-down f { S+ } 1 } [ select-to-caret ] }
|
||||||
{ T{ button-up f { S+ } 1 } [ end-selection ] }
|
{ T{ button-up f { S+ } 1 } [ end-selection ] }
|
||||||
{ T{ button-up } [ end-selection ] }
|
{ T{ button-up } [ end-selection ] }
|
||||||
{ T{ drag } [ extend-selection ] }
|
{ T{ drag { # 1 } } [ extend-selection ] }
|
||||||
{ copy-action [ com-copy ] }
|
{ copy-action [ com-copy ] }
|
||||||
{ T{ button-down f f 3 } [ pane-menu ] }
|
{ T{ button-down f f 3 } [ pane-menu ] }
|
||||||
} set-gestures
|
} set-gestures
|
||||||
|
|
Loading…
Reference in New Issue