Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/cm_modes/module.json

Issue 1430753002: DevTools: [CodeMirror] highlight Stylus files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/cm_modes/stylus.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.CodeMirrorMimeMode", 4 "type": "@WebInspector.CodeMirrorMimeMode",
5 "className": "WebInspector.DefaultCodeMirrorMimeMode", 5 "className": "WebInspector.DefaultCodeMirrorMimeMode",
6 "fileName": "clike.js", 6 "fileName": "clike.js",
7 "mimeTypes": [ 7 "mimeTypes": [
8 "text/x-csrc", 8 "text/x-csrc",
9 "text/x-c", 9 "text/x-c",
10 "text/x-chdr", 10 "text/x-chdr",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "text/x-livescript" 63 "text/x-livescript"
64 ] 64 ]
65 }, 65 },
66 { 66 {
67 "type": "@WebInspector.CodeMirrorMimeMode", 67 "type": "@WebInspector.CodeMirrorMimeMode",
68 "className": "WebInspector.DefaultCodeMirrorMimeMode", 68 "className": "WebInspector.DefaultCodeMirrorMimeMode",
69 "fileName": "clojure.js", 69 "fileName": "clojure.js",
70 "mimeTypes": [ 70 "mimeTypes": [
71 "text/x-clojure" 71 "text/x-clojure"
72 ] 72 ]
73 },
74 {
75 "type": "@WebInspector.CodeMirrorMimeMode",
76 "className": "WebInspector.DefaultCodeMirrorMimeMode",
77 "fileName": "stylus.js",
78 "mimeTypes": [
79 "text/x-styl"
80 ]
73 } 81 }
74 ], 82 ],
75 "dependencies": [ 83 "dependencies": [
76 "source_frame" 84 "source_frame"
77 ], 85 ],
78 "scripts": [ 86 "scripts": [
79 "DefaultCodeMirrorMimeMode.js" 87 "DefaultCodeMirrorMimeMode.js"
80 ], 88 ],
81 "resources": [ 89 "resources": [
82 "clike.js", 90 "clike.js",
83 "coffeescript.js", 91 "coffeescript.js",
84 "php.js", 92 "php.js",
85 "python.js", 93 "python.js",
86 "shell.js", 94 "shell.js",
87 "livescript.js", 95 "livescript.js",
88 "clojure.js" 96 "clojure.js",
97 "stylus.js"
89 ] 98 ]
90 } 99 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/cm_modes/stylus.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698