LoginSignup
0
0

More than 5 years have passed since last update.

Sublime Text3で「Finderでフォルダを開く」ショートカットを設定する

Last updated at Posted at 2018-12-18

Sublime Text3でコーディングしているときに、ショートカットキーで現在開いているファイルのある場所をFinderで開きたいときがままある。

そこで、「Finderでフォルダを開く」ショートカットを設定したので手順をメモしておく。

  1. Package controlからOpen Finderをインストールする
  2. Preference → KeyBindingsを開き、User側の設定ファイルの[...]の中に以下を追加する。Keysにはお好みのキーバインドを書く。

        {
            "keys": ["super+shift+o"],
            "command": "open_finder",
            "args": {}
        }
    
  3. 設定を保存すれば現在開いているファイルのあるフォルダをFinderで開ける。

0
0
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
0