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

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: Added a shortcut to shortcuts screen 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
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "platform": "mac", 84 "platform": "mac",
85 "shortcut": "Meta+O Meta+P" 85 "shortcut": "Meta+O Meta+P"
86 }, 86 },
87 { 87 {
88 "platform": "windows,linux", 88 "platform": "windows,linux",
89 "shortcut": "Ctrl+O Ctrl+P" 89 "shortcut": "Ctrl+O Ctrl+P"
90 } 90 }
91 ] 91 ]
92 }, 92 },
93 { 93 {
94 "type": "@WebInspector.ActionDelegate",
95 "actionId": "sources.switch-file",
96 "className": "WebInspector.SourcesView.SwitchFileActionDelegate",
97 "contextTypes": ["WebInspector.SourcesView"],
98 "bindings": [
99 {
100 "shortcut": "Alt+O"
101 }
102 ]
103 },
104 {
94 "type": "ui-setting", 105 "type": "ui-setting",
95 "settingName": "javaScriptDisabled", 106 "settingName": "javaScriptDisabled",
96 "settingType": "custom", 107 "settingType": "custom",
97 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele gate" 108 "className": "WebInspector.SourcesPanel.DisableJavaScriptSettingDele gate"
98 }, 109 },
99 { 110 {
100 "type": "ui-setting", 111 "type": "ui-setting",
101 "section": "Sources", 112 "section": "Sources",
102 "title": "Search in content scripts", 113 "title": "Search in content scripts",
103 "settingName": "searchInContentScripts", 114 "settingName": "searchInContentScripts",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 "type": "ui-setting", 160 "type": "ui-setting",
150 "title": "Auto-reload generated CSS", 161 "title": "Auto-reload generated CSS",
151 "parentSettingName": "cssSourceMapsEnabled", 162 "parentSettingName": "cssSourceMapsEnabled",
152 "settingName": "cssReloadEnabled", 163 "settingName": "cssReloadEnabled",
153 "settingType": "checkbox" 164 "settingType": "checkbox"
154 } 165 }
155 ], 166 ],
156 "dependencies": [ "source_frame" ], 167 "dependencies": [ "source_frame" ],
157 "scripts": [ "SourcesPanel.js" ] 168 "scripts": [ "SourcesPanel.js" ]
158 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698