i am writing my own buildSystem
i want to have multiple command keys like so
- Code: Select all
[
{ "keys": ["super+b"], "command": "ak_make", "args": {"test": "true"}},
{ "keys": ["super+shift+b"], "command": "ak_make" , "args": {"test": "false"}}
]
ak_make is a window command
My idea is to use args to pass args to my AkMake window command.
But my args are not passed through to my AkMake class.
i only get "working_dir" which is set in my .sublime-build
any idea?
Thanks