0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Hammerspoonでfn+英字をctrl+英字にマップする

Posted at

HammerspoonはmacOSでキーのマッピングを変更することのできるソフトウエアです。
SierraにバージョンアップしたらKarabinerが使えなくなってしまい、Hammerspoonに乗り換えている人もいると思います。(私みたいに)

私はKarabinerで、USキーボードの左下にあるfnキーをcontrolに割り当てていたのですが、それと同じことをHammerspoonで行う設定を書いてみました。

fnと英字キー(とスペースバー)を押したときだけ、fnをcontrolキーに変えています。
(オートリピートのときにちゃんと動くのか自信がありません。)

~/.hammerspoon/init.lua
local handler = function(e)
  local key = hs.keycodes.map[e:getKeyCode()]
  local fn = e:getFlags()['fn']

  if (fn and ((string.len(key) == 1 and 'a' <= key and key <= 'z') or key == 'space')) then
    hs.eventtap.keyStroke({'ctrl'}, key, 1000)
    return ''
  end
end

eventtap = hs.eventtap.new({hs.eventtap.event.types.keyDown}, handler)
eventtap:start()
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?