Skip to content

Commit

Permalink
Update src/vs/workbench/contrib/files/browser/files.contribution.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Ross <[email protected]>
  • Loading branch information
babakfp and alexr00 authored Dec 13, 2024
1 parent 8262afa commit 53d684f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/vs/workbench/contrib/files/browser/files.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,10 +362,14 @@ configurationRegistry.registerConfiguration({
'description': nls.localize('fileDialogDefaultPath', "Default path for file dialogs, overriding user's home path. Only used in the absence of a context-specific path, such as most recently opened file or folder."),
'scope': ConfigurationScope.MACHINE
},
'files.dialog.currentDirectory': {
'type': 'boolean',
'description': nls.localize('files.dialog.currentDirectory', "Opens the file dialog in the current directory rather than the parent directory. Overrides the default behavior where the parent directory would typically be opened."),
'default': false
'files.dialog.openFolderStartLocation': {
'type': 'string',
'enum': [
'parent',
'current'
],
'description': nls.localize('files.dialog.openFolderStartLocation', "Determines whether the file dialog should open in the parent or current folder of the active file."),
'default': 'parent'
},
'files.simpleDialog.enable': {
'type': 'boolean',
Expand Down

0 comments on commit 53d684f

Please sign in to comment.