Helpfeelキー
https://gyazo.com/c3c7c04f615d26647e09efecd78213cb
増井俊之.icon
Helpfeel.iconキーを押すと "Cmd-L slash space" が出力される
Cmd-L でURL枠(Omnibox)にフォーカスが移動し、/ でHelplineが起動する 超便利!
code:omnihelp.json
{
"title": "Ctrlを押したら'/ 'を生成",
"rules": [
{
"description": "Ctrlを押したら'/ 'を生成",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control"
},
"to_if_alone": [
{
"key_code": "l",
},
{
"key_code": "slash"
},
{
"key_code": "spacebar"
}
]
}
]
}
]
}