@@ -158,18 +158,6 @@ export const ALL_SHORTCUTS: Omit<ShortcutDefinition, 'handler'>[] = [
158158 displayOnly : true ,
159159 } ,
160160
161- // Editor File Explorer
162- { id : 'explorer.new-file' , label : 'New File' , scope : 'editor' , key : 'n' } ,
163- { id : 'explorer.new-folder' , label : 'New Folder' , scope : 'editor' , key : 'n' , modifiers : { shift : true } } ,
164- { id : 'explorer.rename' , label : 'Rename Item' , scope : 'editor' , key : 'r' } ,
165- {
166- id : 'explorer.delete' ,
167- label : 'Delete Item' ,
168- scope : 'editor' ,
169- key : { pc : 'delete' , mac : 'backspace' } ,
170- modifiers : { mac : { cmdOrCtrl : true } } ,
171- } ,
172-
173161 // Studio File Explorer
174162 { id : 'studio-explorer.new-config' , label : 'New Configuration' , scope : 'studio' , key : 'c' } ,
175163 { id : 'studio-explorer.new-adapter' , label : 'New Adapter' , scope : 'studio' , key : 'a' } ,
@@ -182,6 +170,18 @@ export const ALL_SHORTCUTS: Omit<ShortcutDefinition, 'handler'>[] = [
182170 key : { pc : 'delete' , mac : 'backspace' } ,
183171 modifiers : { mac : { cmdOrCtrl : true } } ,
184172 } ,
173+
174+ // Editor File Explorer
175+ { id : 'explorer.new-file' , label : 'New File' , scope : 'editor' , key : 'n' } ,
176+ { id : 'explorer.new-folder' , label : 'New Folder' , scope : 'editor' , key : 'n' , modifiers : { shift : true } } ,
177+ { id : 'explorer.rename' , label : 'Rename Item' , scope : 'editor' , key : 'r' } ,
178+ {
179+ id : 'explorer.delete' ,
180+ label : 'Delete Item' ,
181+ scope : 'editor' ,
182+ key : { pc : 'delete' , mac : 'backspace' } ,
183+ modifiers : { mac : { cmdOrCtrl : true } } ,
184+ } ,
185185]
186186
187187function buildInitialShortcuts ( ) : Map < string , ShortcutDefinition > {
0 commit comments