| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@UI.ActionDelegate", | 4 "type": "@UI.ActionDelegate", |
| 5 "actionId": "commandMenu.show", | 5 "actionId": "commandMenu.show", |
| 6 "className": "QuickOpen.CommandMenu.ShowActionDelegate", | 6 "className": "QuickOpen.CommandMenu.ShowActionDelegate", |
| 7 "bindings": [ | 7 "bindings": [ |
| 8 { | 8 { |
| 9 "platform": "windows,linux", | 9 "platform": "windows,linux", |
| 10 "shortcut": "Ctrl+Shift+P" | 10 "shortcut": "Ctrl+Shift+P" |
| 11 }, | 11 }, |
| 12 { | 12 { |
| 13 "platform": "mac", | 13 "platform": "mac", |
| 14 "shortcut": "Meta+Shift+P" | 14 "shortcut": "Meta+Shift+P" |
| 15 } | 15 } |
| 16 ] | 16 ] |
| 17 }, |
| 18 { |
| 19 "type": "@UI.ActionDelegate", |
| 20 "actionId": "quickOpen.show", |
| 21 "title": "Go to file...", |
| 22 "className": "QuickOpen.QuickOpen.ShowActionDelegate", |
| 23 "order": 100, |
| 24 "bindings": [ |
| 25 { |
| 26 "platform": "mac", |
| 27 "shortcut": "Meta+P Meta+O" |
| 28 }, |
| 29 { |
| 30 "platform": "windows,linux", |
| 31 "shortcut": "Ctrl+P Ctrl+O" |
| 32 } |
| 33 ] |
| 17 } | 34 } |
| 18 ], | 35 ], |
| 19 "dependencies": [ | 36 "dependencies": [ |
| 20 "ui", | 37 "ui", |
| 21 "diff" | 38 "diff" |
| 22 ], | 39 ], |
| 23 "scripts": [ | 40 "scripts": [ |
| 24 "FilteredListWidget.js", | 41 "FilteredListWidget.js", |
| 42 "QuickOpen.js", |
| 25 "CommandMenu.js" | 43 "CommandMenu.js" |
| 26 ], | 44 ], |
| 27 "resources": [ | 45 "resources": [ |
| 28 "filteredListWidget.css" | 46 "filteredListWidget.css" |
| 29 ] | 47 ] |
| 30 } | 48 } |
| OLD | NEW |