Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.09 KB

README.md

File metadata and controls

46 lines (37 loc) · 1.09 KB

Finder

Sublime text 3 plugin, that can make handy shortcuts for "Where" field in search panel.

Usage:

You can declare shortcut like:

{
    "keys": ["super+shift+f"], "command": "finder", "args": {"finder_folders": [
        {
            "name": "Python sources",
            "path": "/path/to/your/python/source/folder/",
        },
        {
            "name": "Js sources",
            "path": "/another/path/",
        }
    ]}
},

or add this settings to Project->Edit Project

    ...
    "finder_folders": [
        {
            "name": "Python sources",
            "path": "/path/to/your/python/source/folder/",
        },
        {
            "name": "Js sources",
            "path": "/another/path/",
        }
    ]
    ...

and declare shortcuts without arguments.

Example:

FinderScreenShot