Shift + mouse button #333
Unanswered
riley-martin
asked this question in
Q&A
Replies: 1 comment
-
Could be related: #270 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use the Programmer Dvorak keyboard layout, so this requires me to implement the shifted keys as a separate layer. Mostly this works, but some apps use key combos like
shift+mouse button
, and with this, they don't receive the shift keypress.Using
(multi lsft (layer-while-held dvp-shift))
solves that problem, but since the symbols are on the base layer and the numbers are shifted, there is no way to input numbers (for example, pressing2
on the base layer inputs[
, and on the shift layer it inputsshift+7
, which is&
; hope that makes sense). Using the numpad keys for numbers also has similar problems. Is there any way to only input shift when no other key is pressed, and otherwise switch layers?Beta Was this translation helpful? Give feedback.
All reactions