Sublime Textの検索窓に日本語を入力する
1. Sublime Textで検索窓を開きます
2. 検索したい日本語を入力します
3. Enter を押した瞬間に全部消えます
https://gyazo.com/2c92c13bfff6bf5ff3e436a2015b2427
環境
macOS
Sublime Text 3
IME: ATOK
対策: ぐぐったら一発
参考: Sublime Textの検索窓に日本語を入力する方法 · GitHub
1. Default (OSX).sublime-keymapを編集可能にする
詳しくはリンク先の記事で
自分はなんかこれやらんでもできた
何かのタイミングで設定する機会があったのかな? なんも覚えてない
2. 基本設定 > キーバインド > 標準 から以下をコメントアウト
code:下3行をコメントアウトする
// Find panel key bindings
{ "keys": "enter", "command": "find_next", "context":
{"key": "panel", "operand": "find"}, {"key": "panel_has_focus"}
},
code:ついでにここもコメントアウトしとく
// Replace panel key bindings
{ "keys": "enter", "command": "find_next", "context":
{"key": "panel", "operand": "replace"}, {"key": "panel_has_focus"}
},
// Incremental find panel key bindings
{ "keys": "enter", "command": "hide_panel", "context":
{"key": "panel", "operand": "incremental_find"}, {"key": "panel_has_focus"}
},
3. 保存する
#解決した