Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
KeyRemac4MacBook.rb
Search
kei-q
February 17, 2016
Programming
150
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
KeyRemac4MacBook.rb
tokyurubykaigi06発表資料
kei-q
February 17, 2016
More Decks by kei-q
See All by kei-q
春の鎌倉 Tech&Product Meet発表資料
keqh
0
52
Rubyistのみんなに 私の推しのDuckDBを 紹介させてください
keqh
0
96
Repro_Tech_Meetup__1_Docker.pdf
keqh
4
730
PSD.rbでiPhoneアプリ開発のギョームをカイゼンしたい(仮)
keqh
0
200
すごいErlang楽しく学んだ!
keqh
0
230
Other Decks in Programming
See All in Programming
freee が目指す データ マネジメント戦略 AI-Ready 時代を支える 攻めのガバナンスとは
freee
PRO
0
530
Press start. Python's next generation.
willingc
PRO
3
280
T3DD26: From RAGs to Riches
martinhelmich
0
120
Webエンジニアなのにブラウザの仕組みがわからないので、Pythonで自作してみた
tatsuki12
4
1.2k
Introducing Stack Pull Request in GitHub
kkamegawa
0
110
AIと壁打ちしながら進めるコスト管理
fufuhu
2
1.8k
Japan Community Day at Kubecon + CloudNativeCon Japan 2026: Learning Container Privilege Control by Building My Own Low-Level Container Runtime
ternbusty
1
180
関東Kaggler会_NVIDIA_Nemotron_コンペ_振り返り
rick_ds
0
740
Flow は今どうなっているか
mizdra
PRO
0
770
仕様駆動開発の消費期限
watany
20
9.1k
Loosening the Reins: Go Generics Get More Flexible
kuro_kurorrr
0
350
信頼性の目標を誰も求めてない
shubox
0
390
Featured
See All Featured
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
1.5k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
360
So, you think you're a good person
axbom
PRO
2
2.1k
How to Talk to Developers About Accessibility
jct
2
530
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
2
260
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
2
410
The Organizational Zoo: Understanding Human Behavior Agility Through Metaphoric Constructive Conversations (based on the works of Arthur Shelley, Ph.D)
kimpetersen
PRO
0
430
Reality Check: Gamification 10 Years Later
codingconduct
0
2.3k
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
1
390
Designing for Performance
lara
611
70k
Game over? The fight for quality and originality in the time of robots
wayneb77
1
260
A better future with KSS
kneath
240
18k
Transcript
KeyRemap4MacB ook.rb @kei_q 2013-06-29 TokyuRuby 会議06 #tqrk06
KR4MB とは? https://pqrs.org/macosx/keyremap4macbook/
None
うっかりでアプリ終了しちゃった Cmd + q を長押しに
US 配列でも簡単に入力切り替えし たい Cmd を英数/ かな兼用に
あのアプリでEmacs ぽくカー ソル 移動したい (cmd | opt | ctrl) +
npbf でカー ソル移動
Problem 設定がたいへん
None
設定画面
検索で絞り込み
設定数 1877
設定(XML) <?xml version="1.0" encoding="UTF-8"?> <root> <item> <name>sample</name> <identifier>private.sample</identifier> <autogen>__KeyToKey__ KeyCode::SEMICOLON,
KeyCode::RETURN</autogen> </item> </root>
"XML の視覚的なノイズは、 我慢の限界を超えてい ました。 人々 は, 山括弧が目に痛いと訴え始めたの です。" そこで、XML の問題点なしに、XML
の設定ファイル のメリットを享受したいという願望が出てきまし た。 ドメイン特化言語 - パター ンで学ぶDSL のベストプラクティス46 項目 IX ペー ジより
どうする
None
None
DSL を書こう!
Keyremac gem install keyremac
None
再掲: 設定(XML) <?xml version="1.0" encoding="UTF-8"?> <root> <item> <name>sample</name> <identifier>private.sample</identifier> <autogen>__KeyToKey__
KeyCode::SEMICOLON, KeyCode::RETURN</autogen> </item> </root>
Keyremac では require 'keyremac' ';' .to 'RETURN' 設定の確認 ruby private.rb
--dump 設定の読み込み ruby private.rb --reload
基本機能 キー を別のキー に ';' .to :RETURN キー に修飾キー の機能追加
:JIS_EISUU .overlaid :COMMAND_L 特定のアプリだけ設定を有効に app "APPNAME" do ... end 特定の入力ソー スだけ設定を有効に item inputsource: "APPNAME" do ... end
未対応のタグ タグ名 + '_' でそのまま出力 before item_ do name_ 'jis_to_us'
identifier_ 'private.jis_to_us' autogen_ "__SetKeyboardType__ KeyboardType::MACBOOK" :JIS_YEN .to :BACKQUOTE :JIS_UNDERSCORE .to :BACKQUOTE end
私の設定 JIS をUS に item_ do name_ 'jis_to_us' identifier_ 'private.jis_to_us'
autogen_ "__SetKeyboardType__ KeyboardType::MACBOOK" :JIS_YEN .to :BACKQUOTE :JIS_UNDERSCORE .to :BACKQUOTE end
None
semicolon とunderscore をswap ':' .to ':' ';' .to '_' '_'
.to ';'
F7-9 でitunes 操作 :F7 .to :MUSIC_PREV :F8 .to :MUSIC_PLAY :F9
.to :MUSIC_NEXT
F10-12 で音量調節 :F10 .to :VOLUME_MUTE :F11 .to :VOLUME_DOWN :F12 .to
:VOLUME_UP
SPACE の左右を再設定 :JIS_EISUU .overlaid :COMMAND_L :COMMAND_L .to :OPTION_L :JIS_KANA .to
:RETURN
'A' のとなりを単体で 英数 + ESC :CONTROL_L .overlaid :CONTROL_L, keys: [:JIS_EISUU,
:ESCAPE]
SandS :SPACE .overlaid :SHIFT_L, repeat: true
window 最小化を無効に :m.cmd .to :VK_NONE # disable_minimize
IME 切り替え :j.ctrl .to :JIS_KANA # "Google IME"
左SHIFT を修飾キー に # extra1 :SHIFT_L.cmd .to :SHIFT_L.cmd :SHIFT_L.opt .to
:SHIFT_L.opt :SHIFT_L.ctrl .to :SHIFT_L.ctrl :CONTROL_L.extra1 .to :CONTROL_L.shift :SHIFT_L .to :VK_MODIFIER_EXTRA1
ctrl+npfb をemacs っぽく # ctrl-npを強制的に↑↓に :p.ctrl.none .to :CURSOR_UP :n.ctrl.none .to
:CURSOR_DOWN :b.ctrl.none .to :CURSOR_LEFT :f.ctrl.none .to :CURSOR_RIGHT
TMUX を1 ストロー クで操作 app 'TERMINAL' do "pnco".chars { |c|
c.extra1 .to :JIS_EISUU, :t.ctrl, c } "jkl" .chars { |c| c.extra1 .to :JIS_EISUU, :t.ctrl, c } "du" .chars { |c| c.extra1 .to :t.ctrl, '['.ctrl, c.ctrl } end
Sublime Text でGoogle IME の予 測変換 appdef_ do appname_ "SUBLIME"
equal_ "com.sublimetext.3" equal_ "com.sublimetext.2" end app 'SUBLIME', inputsource: 'JAPANESE' do :TAB .to :i.ctrl end
タブの切替 ['SUBLIME', 'GOOGLE_CHROME'].each { |app_name| app app_name do :p.extra1 .to
:JIS_EISUU, '['.cmd.shift :n.extra1 .to :JIS_EISUU, ']'.cmd.shift end }
Haskell 版Keyremac 製作中
None
getting started $ gem install keyremac $ touch > private.rb
require 'keyremac' ';' .to :RETURN $ ruby private.rb --reload