omlins / JustSayIt.jl

Software and high-level API for offline, low latency and secure translation of human speech to computer commands or text on Linux, MacOS and Windows
BSD 3-Clause "New" or "Revised" License
87 stars 12 forks source link

Add support for multiword command names #51

Closed omlins closed 2 years ago

omlins commented 2 years ago

As a result, it is now possible to define for example:

commands = Dict("select all" => (Key.ctrl, 'a'),
        "page up"    => Key.page_up,
        "page down"  => Key.page_down,
        );

Closes #50