natural-harmonia-gropius / input-event

InputEvent.lua for mpv-player, enhanced input.conf with better, conflict-free, low-latency event mechanism.
MIT License
39 stars 5 forks source link

don't execute empty command #44

Closed verygoodlee closed 3 months ago

verygoodlee commented 3 months ago

使用 Property Expansion 语法的时候,解析出来命令可能为空,执行空命令控制台会有报错。 屏幕截图 2024-05-12 150921

比如这种需求,在idle界面时左键不触发切换暂停,命令是空的干脆不执行,避免控制台报错。

[
  {
    "key": "MBTN_LEFT",
    "on": {
      "click": "${?idle-active==no:cycle pause}",
      "double_click": "cycle fullscreen"
    }
  }
]