はじめに
ググったら出てくる記事のまんまなのですが、わけがあって自分用に簡易手順メモ
参考:Sublime Textの検索窓に日本語を入力する方法.md
手順
Preferences(基本設定)
からKey Bindings - Default(キーバインド - 標準)
開く- すべてコピー
command+n
で新規ファイルを開いて張り付けcommand+s
で保存ダイアログ開く- 下記のPackagesディレクトリ内にDefaultディレクトリ作る(無ければ)
/Users/ユーザ名/Library/Application Support/Sublime Text 3/Packages - Defaultディレクトリの中に
Default (OSX).sublime-keymap
という名前で保存 - そのまま下記の行をコメントアウト。
// Find panel key bindings // { "keys": ["enter"], "command": "find_next", "context": // [{"key": "panel", "operand": "find"}, {"key": "panel_has_focus"}] // }, // 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"}] // },
コメントしたい行をドラッグで選択してcommand + /
で簡単コメントアウト
検索の仕方
command + f
で検索パネルを開いて日本語を入力- 次の検索結果に行きたいときは
command + g
- 前の検索結果に行きたいときは
command + shift + g