This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
st
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
X10/SGR mouse: use alt as meta key instead of super/windows key
master
Hiltjo Posthuma
3 years ago
parent
b1d97fec47
commit
2c5edf28ec
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
x.c
+ 1
- 1
x.c
View File
@ -415,7 +415,7 @@ mousereport(XEvent *e)
if
(
!
IS_SET
(
MODE_MOUSEX10
)
)
{
code
+
=
(
(
state
&
ShiftMask
)
?
4
:
0
)
+
(
(
state
&
Mod
4
Mask
)
?
8
:
0
)
+
(
(
state
&
Mod
1
Mask
)
?
8
:
0
)
/* meta key: alt */
+
(
(
state
&
ControlMask
)
?
16
:
0
)
;
}
Write
Preview
Loading…
Cancel
Save