[[mapDoubleTap (karabiner.ts)|mapDoubleTap]]を使う。
```ts
mapDoubleTap("left_control")
// left_control を200ms以内に2通しで Cmd+Shift+c
.to("c", ["command", "shift"])
// left_control を押して200ms以上経ったら left_command
// left_control+cのように修飾キーとして使った場合は即座に反応する
.singleTap(toKey("left_command"))
```