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

Side by Side Diff: Source/devtools/front_end/sources/module.json

Issue 378273004: DevTools: Add a shortcut for switching between files with the same name and different extensions. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Comments addressed Created 6 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/sources/SourcesView.js ('k') | no next file » | 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.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "sources", 5 "name": "sources",
6 "title": "Sources", 6 "title": "Sources",
7 "order": 2, 7 "order": 2,
8 "className": "WebInspector.SourcesPanel" 8 "className": "WebInspector.SourcesPanel"
9 }, 9 },
10 { 10 {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 "platform": "mac", 102 "platform": "mac",
103 "shortcut": "Meta+O Meta+P" 103 "shortcut": "Meta+O Meta+P"
104 }, 104 },
105 { 105 {
106 "platform": "windows,linux", 106 "platform": "windows,linux",
107 "shortcut": "Ctrl+O Ctrl+P" 107 "shortcut": "Ctrl+O Ctrl+P"
108 } 108 }
109 ] 109 ]
110 }, 110 },
111 { 111 {
112 "type": "@WebInspector.ActionDelegate",
113 "actionId": "sources.switch-file",
114 "className": "WebInspector.SourcesView.SwitchFileActionDelegate",
115 "contextTypes": ["WebInspector.SourcesView"],
116 "bindings": [
117 {
118 "shortcut": "Alt+O"
119 }
120 ]
121 },
122 {
112 "type": "ui-setting", 123 "type": "ui-setting",
113 "settingName": "javaScriptDisabled", 124 "settingName": "javaScriptDisabled",
114 "settingType": "custom", 125 "settingType": "custom",
115 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele gate" 126 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele gate"
116 }, 127 },
117 { 128 {
118 "type": "ui-setting", 129 "type": "ui-setting",
119 "section": "Sources", 130 "section": "Sources",
120 "title": "Search in content scripts", 131 "title": "Search in content scripts",
121 "settingName": "searchInContentScripts", 132 "settingName": "searchInContentScripts",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "type": "ui-setting", 178 "type": "ui-setting",
168 "title": "Auto-reload generated CSS", 179 "title": "Auto-reload generated CSS",
169 "parentSettingName": "cssSourceMapsEnabled", 180 "parentSettingName": "cssSourceMapsEnabled",
170 "settingName": "cssReloadEnabled", 181 "settingName": "cssReloadEnabled",
171 "settingType": "checkbox" 182 "settingType": "checkbox"
172 } 183 }
173 ], 184 ],
174 "dependencies": [ "source_frame" ], 185 "dependencies": [ "source_frame" ],
175 "scripts": [ "SourcesPanel.js" ] 186 "scripts": [ "SourcesPanel.js" ]
176 } 187 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/SourcesView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698