`toIfAlone`を使ったときに単押しのタイムアウト値を設定するには `parameters` で `{ "basic.to_if_alone_timeout_milliseconds": ... }` を設定する。 たとえば `left_control` を `left_command` に割り当てつつ、単押しの場合は別のコマンドを割り当てるために以下のようなスクリプトを書いている場合 ```ts map("left_control") .to("left_command") .toIfAlone("c", ["command", "shift"]) ``` デフォルトでは1000ms(1秒)がタイムアウトだが、以下のようにすると200msに設定できる。 ```ts map("left_control") .to("left_command") .toIfAlone("c", ["command", "shift"]) .parameters({ "basic.to_if_alone_timeout_milliseconds": 200 }) ```