We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to define a sequence with one-shot modifiers and other keys that can be modified with those one-shot modifiers.
A minimal example:
(defcfg process-unmapped-keys yes sequence-timeout 16000) (defsrc) (defvirtualkeys one-shot-shift (one-shot 9999 lsft) number-one 1) (defseq one-shot-shift (s) number-one (n)) (deflayermap (base) , sldr)
,s,n
1
The expected output is !, that is S-1.
!
S-1
1.8.0-prerelease-1
No response
MacOS
I tried to use one-shot-pause-processing in multi and macro, but neither worked for me.
one-shot-pause-processing
multi
macro
The text was updated successfully, but these errors were encountered:
It can be kinda made to work but it's not ergonomic.
Sim link
(defcfg process-unmapped-keys yes sequence-timeout 16000) (defsrc) (defvirtualkeys one-shot-shift (one-shot 9999 lsft) number-one (multi 1 (macro 5 nop0))) (defseq one-shot-shift (s) number-one (n)) (deflayermap (base) , (multi (one-shot-pause-processing 5) sldr) s (multi (one-shot-pause-processing 2) s) n (multi (one-shot-pause-processing 2) n) )
Sorry, something went wrong.
jtroo
No branches or pull requests
Requirements
Describe the bug
I would like to define a sequence with one-shot modifiers and other keys that can be modified with those one-shot modifiers.
Relevant kanata config
A minimal example:
To Reproduce
,s,n
.1
.Expected behavior
The expected output is
!
, that isS-1
.Kanata version
1.8.0-prerelease-1
Debug logs
No response
Operating system
MacOS
Additional context
I tried to use
one-shot-pause-processing
inmulti
andmacro
, but neither worked for me.The text was updated successfully, but these errors were encountered: