-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
feat!: allow running multiple kanata instances concurrently #13
Conversation
I noticed that the presets in tray menu are being displayed in random order after being read from config file. It's happening because we parse presets into golang's map, which doesn't support preservation of order of insertions. To fix this a wrapper for map like this one would need to be used, however the toml parsing library we currently use have no support for parsing complex types into custom structs. Edit: |
Also:
|
Closes #10
TODO: