OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.InplaceEditor", | 4 "type": "@WebInspector.InplaceEditor", |
5 "className": "WebInspector.CodeMirrorUtils" | 5 "className": "WebInspector.CodeMirrorUtils" |
6 }, | 6 }, |
7 { | 7 { |
8 "type": "@WebInspector.TokenizerFactory", | 8 "type": "@WebInspector.TokenizerFactory", |
9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" | 9 "className": "WebInspector.CodeMirrorUtils.TokenizerFactory" |
10 }, | 10 }, |
11 { | 11 { |
12 "type": "ui-setting", | 12 "type": "setting", |
13 "section": "Sources", | 13 "category": "Sources", |
14 "title": "Default indentation:", | 14 "title": "Default indentation:", |
15 "settingName": "textEditorIndent", | 15 "settingName": "textEditorIndent", |
16 "settingType": "select", | 16 "settingType": "enum", |
17 "options": [ | 17 "options": [ |
18 ["2 spaces", " "], | 18 ["2 spaces", " "], |
19 ["4 spaces", " "], | 19 ["4 spaces", " "], |
20 ["8 spaces", " "], | 20 ["8 spaces", " "], |
21 ["Tab character", "\t"] | 21 ["Tab character", "\t"] |
22 ] | 22 ] |
23 } | 23 } |
24 ], | 24 ], |
25 "dependencies": [ | 25 "dependencies": [ |
26 "components" | 26 "components" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "../cm/shell.js" | 75 "../cm/shell.js" |
76 ], | 76 ], |
77 "stylesheets": [ | 77 "stylesheets": [ |
78 "../cm/codemirror.css", | 78 "../cm/codemirror.css", |
79 "cmdevtools.css", | 79 "cmdevtools.css", |
80 "fontView.css", | 80 "fontView.css", |
81 "imageView.css", | 81 "imageView.css", |
82 "resourceSourceFrame.css" | 82 "resourceSourceFrame.css" |
83 ] | 83 ] |
84 } | 84 } |
OLD | NEW |