Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

open_on_startup

Marcel Kloubert edited this page Nov 1, 2017 · 12 revisions

Home >> Settings >> Open on startup

Open on startup

Defines a list of files to open at startup.

{
    "deploy": {
        "open": [
            {
                "closeOthers": true,
                "files": [
                    "/styles/*.*"
                ],
                "exclude": [
                    "/styles/*.css"
                ]
            }
        ]
    }
}
Name Description
closeOthers Close other opened files or not. Default: (false)
exclude Files to exclude (s. node-glob).
files Files to open (s. node-glob).
if One or more conditions (as JavaScript code) that defines if file(s) should be opened or not, similar to values.
isFor An optional list of one or more (host)names that filter is visible for.
useGitIgnoreStylePatterns Also check directory patterns, like in .gitignore files, or not. Default: (true)
Clone this wiki locally