OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "setting", | 4 "type": "setting", |
5 "category": "Sources", | 5 "category": "Sources", |
6 "title": "Default indentation:", | 6 "title": "Default indentation:", |
7 "settingName": "textEditorIndent", | 7 "settingName": "textEditorIndent", |
8 "settingType": "enum", | 8 "settingType": "enum", |
9 "defaultValue": " ", | 9 "defaultValue": " ", |
10 "options": [ | 10 "options": [ |
11 { "title": "Set indentation to 2 spaces", "text": "2 spaces", "v
alue": " " }, | 11 { |
12 { "title": "Set indentation to 4 spaces", "text": "4 spaces", "v
alue": " " }, | 12 "title": "Set indentation to 2 spaces", |
13 { "title": "Set indentation to 8 spaces", "text": "8 spaces", "v
alue": " " }, | 13 "text": "2 spaces", |
14 { "title": "Set indentation to tab character", "text": "Tab char
acter", "value": "\t" } | 14 "value": " " |
| 15 }, |
| 16 { |
| 17 "title": "Set indentation to 4 spaces", |
| 18 "text": "4 spaces", |
| 19 "value": " " |
| 20 }, |
| 21 { |
| 22 "title": "Set indentation to 8 spaces", |
| 23 "text": "8 spaces", |
| 24 "value": " " |
| 25 }, |
| 26 { |
| 27 "title": "Set indentation to tab character", |
| 28 "text": "Tab character", |
| 29 "value": "\t" |
| 30 } |
15 ] | 31 ] |
16 } | 32 } |
17 ], | 33 ], |
18 "dependencies": [ | 34 "dependencies": [ |
19 "text_editor", | 35 "text_editor", |
20 "ui", | 36 "ui", |
21 "platform" | 37 "platform", |
| 38 "persistence", |
| 39 "diff" |
22 ], | 40 ], |
23 "scripts": [ | 41 "scripts": [ |
24 "SourcesTextEditor.js", | 42 "SourcesTextEditor.js", |
25 "FontView.js", | 43 "FontView.js", |
26 "ImageView.js", | 44 "ImageView.js", |
27 "SourceFrame.js", | 45 "SourceFrame.js", |
28 "ResourceSourceFrame.js" | 46 "ResourceSourceFrame.js", |
| 47 "UISourceCodeFrame.js", |
| 48 "SourceCodeDiff.js" |
29 ], | 49 ], |
30 "resources": [ | 50 "resources": [ |
31 "fontView.css", | 51 "fontView.css", |
32 "imageView.css" | 52 "imageView.css" |
33 ] | 53 ] |
34 } | 54 } |
OLD | NEW |