yqrashawn / GokuRakuJoudo

config karabiner with ease
GNU General Public License v3.0
1.13k stars 122 forks source link

Can't remap the function key #247

Closed piersolenski closed 6 days ago

piersolenski commented 3 weeks ago

Trying to map the following gives me the error ERROR: invalid <to> in main section's Ctrl -> Function:

{
  :des "Ctrl -> Function"
  :rules [
    [:left_control :keyboard_fn]
  ]
}
0l0l0l commented 6 days ago

no need in keyboard_ part fn will work

{
  :des "Ctrl -> Function"
  :rules [
    [:left_control :fn]
  ]
}
piersolenski commented 6 days ago

Great, thanks!