tweeeetyのぶろぐ的めも

アウトプットが少なかったダメな自分をアウトプット<br>\(^o^)/

Sublime Text 3で検索を日本語でする対応メモ for Mac OS X

はじめに

ググったら出てくる記事のまんまなのですが、わけがあって自分用に簡易手順メモ
参考: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