sublime text : open containing folder

前端 未结 6 1357

I\'m working on some file in my sublime text 2 editor, and I want to open a folder in which that file resides.

I know there is a 2 step procedure to do this already

6条回答
  •  南方客
    南方客 (楼主)
    2021-01-30 11:27

    Install Open project path by shortcut. Then setup keybindings in your User keymap file

    {
      "keys": ["f10"],
      "command": "open_project_folder"
    },
    
    {
      "keys": ["ctrl+f10"],
      "command": "open_file_folder"
    }
    

    Initiate the key bindings on a open file (f10 to open the directory you have set as the project folder, ctrl+f10 to open the folder of the current file.)

提交回复
热议问题