sublime text : open containing folder

前端 未结 6 814

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:25

    You can add the line below to your Default (Windows).sublime-keymap:

    { "keys": ["ctrl+alt+e"], "command": "open_dir", 
        "args": {"dir": "$file_path", "file": "$file_name"} }
    

提交回复
热议问题