{
    "extensions": [
        {
            "type": "@WebInspector.InplaceEditor",
            "className": "WebInspector.CodeMirrorUtils"
        },
        {
            "type": "@WebInspector.TokenizerFactory",
            "className": "WebInspector.CodeMirrorUtils.TokenizerFactory"
        },
        {
            "type": "setting",
            "category": "Sources",
            "title": "Default indentation:",
            "settingName": "textEditorIndent",
            "settingType": "enum",
            "defaultValue": "    ",
            "options": [
                { "title": "Set indentation to 2 spaces", "text": "2 spaces", "value": "  " },
                { "title": "Set indentation to 4 spaces", "text": "4 spaces", "value": "    " },
                { "title": "Set indentation to 8 spaces", "text": "8 spaces", "value": "        " },
                { "title": "Set indentation to tab character", "text": "Tab character", "value": "\t" }
            ]
        }
    ],
    "dependencies": [
        "components"
    ],
    "scripts": [
        "../cm/codemirror.js",
        "../cm/css.js",
        "../cm/javascript.js",
        "../cm/simple.js",
        "../cm/xml.js",
        "../cm/htmlmixed.js",
        "../cm/htmlembedded.js",

        "../cm/matchbrackets.js",
        "../cm/closebrackets.js",
        "../cm/markselection.js",
        "../cm/comment.js",
        "../cm/overlay.js",
        "../cm/activeline.js",

        "CodeMirrorUtils.js",
        "CodeMirrorDictionary.js",
        "TextEditorAutocompleteController.js",
        "CodeMirrorTextEditor.js",
        "FontView.js",
        "ImageView.js",
        "SourceFrame.js",
        "ResourceSourceFrame.js"
    ],
    "skip_compilation": [
        "../cm/codemirror.js",
        "../cm/css.js",
        "../cm/javascript.js",
        "../cm/simple.js",
        "../cm/xml.js",
        "../cm/htmlmixed.js",
        "../cm/htmlembedded.js",

        "../cm/matchbrackets.js",
        "../cm/closebrackets.js",
        "../cm/markselection.js",
        "../cm/comment.js",
        "../cm/overlay.js",
        "../cm/activeline.js"
    ],
    "resources": [
        "../cm/codemirror.css",
        "cmdevtools.css",
        "fontView.css",
        "imageView.css"
    ]
}
