Skip to content

Commit 0884e5a

Browse files
authored
Merge pull request #639 from juneb/Setting_Strings
Simplified extension setting description strings
2 parents bf3573e + 9900efb commit 0884e5a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -317,51 +317,51 @@
317317
"powershell.startAutomatically": {
318318
"type": "boolean",
319319
"default": true,
320-
"description": "If true, causes PowerShell extension features to start automatically when a PowerShell file is opened. If false, the user must initiate startup using the 'PowerShell: Restart Current Session' command. IntelliSense, code navigation, integrated console, code formatting, and other features will not be enabled until the extension has been started."
320+
"description": "Starts PowerShell extension features automatically when a PowerShell file opens. If false, to start the extension, use the 'PowerShell: Restart Current Session' command. IntelliSense, code navigation, integrated console, code formatting, and other features are not enabled until the extension starts."
321321
},
322322
"powershell.useX86Host": {
323323
"type": "boolean",
324324
"default": false,
325-
"description": "If true, causes the 32-bit language service to be used on 64-bit Windows. On 32-bit Windows this setting has no effect. This setting does not affect the debugger which has its own architecture configuration."
325+
"description": "Uses the 32-bit language service on 64-bit Windows. This setting has no effect on 32-bit Windows or on the PowerShell extension debugger, which has its own architecture configuration."
326326
},
327327
"powershell.enableProfileLoading": {
328328
"type": "boolean",
329329
"default": true,
330-
"description": "If true, causes user and system wide profiles (profile.ps1 and Microsoft.VSCode_profile.ps1) to be loaded into the PowerShell session. This affects IntelliSense and interactive script execution. The debugger is not affected by this setting."
330+
"description": "Loads user and system-wide PowerShell profiles (profile.ps1 and Microsoft.VSCode_profile.ps1) into the PowerShell session. This affects IntelliSense and interactive script execution, but it does not affect the debugger."
331331
},
332332
"powershell.scriptAnalysis.enable": {
333333
"type": "boolean",
334334
"default": true,
335-
"description": "Enables real-time script analysis using PowerShell Script Analyzer."
335+
"description": "Enables real-time script analysis from PowerShell Script Analyzer. This extension uses the PSScriptAnalyzer module in $home/.vscode/extensions/ms-vscode.PowerShell-<version>/modules/PSScriptAnalyzer"
336336
},
337337
"powershell.scriptAnalysis.settingsPath": {
338338
"type": "string",
339339
"default": "",
340-
"description": "Specifies the path to a PowerShell Script Analyzer settings file. Use either an absolute path (to override the default settings for all projects) or use a path relative to your workspace."
340+
"description": "Specifies the path to a PowerShell Script Analyzer settings file. To override the default settings for all projects, enter an absolute path, or enter a path relative to your workspace."
341341
},
342342
"powershell.developer.featureFlags": {
343343
"type": "array",
344344
"default": [],
345-
"description": "An array of strings used to enable experimental features in the PowerShell extension."
345+
"description": "An array of strings that enable experimental features in the PowerShell extension."
346346
},
347347
"powershell.developer.powerShellExePath": {
348348
"type": "string",
349349
"default": "",
350-
"description": "Specifies the full path to a PowerShell executable. Used to change the installation of PowerShell used for language and debugging services."
350+
"description": "Specifies the full path to a PowerShell executable. Changes the installation of PowerShell used for language and debugging services."
351351
},
352352
"powershell.developer.powerShellExeIsWindowsDevBuild": {
353353
"type": "boolean",
354354
"default": false,
355-
"description": "If true, indicates that the powerShellExePath points to a developer build of Windows PowerShell and should be configured appropriately."
355+
"description": "Indicates that the powerShellExePath points to a developer build of Windows PowerShell and configures it for development."
356356
},
357357
"powershell.developer.bundledModulesPath": {
358358
"type": "string",
359-
"description": "Specifies the path to the folder containing modules that are bundled with the PowerShell extension (i.e. PowerShell Editor Services, PowerShell Script Analyzer, Plaster)"
359+
"description": "Specifies an alternate path to the folder containing modules that are bundled with the PowerShell extension (i.e. PowerShell Editor Services, PSScriptAnalyzer, Plaster)"
360360
},
361361
"powershell.developer.editorServicesLogLevel": {
362362
"type": "string",
363363
"default": "Normal",
364-
"description": "Sets the logging verbosity level for the PowerShell Editor Services host executable. Possible values are 'Verbose', 'Normal', 'Warning', and 'Error'"
364+
"description": "Sets the logging verbosity level for the PowerShell Editor Services host executable. Valid values are 'Verbose', 'Normal', 'Warning', and 'Error'"
365365
},
366366
"powershell.developer.editorServicesWaitForDebugger": {
367367
"type": "boolean",
@@ -411,15 +411,15 @@
411411
"powershell.integratedConsole.showOnStartup": {
412412
"type": "boolean",
413413
"default": true,
414-
"description": "If true, causes the integrated console to be shown automatically when the PowerShell extension is initialized."
414+
"description": "Shows the integrated console when the PowerShell extension is initialized."
415415
},
416416
"powershell.integratedConsole.focusConsoleOnExecute": {
417417
"type": "boolean",
418418
"default": true,
419-
"description": "If true, causes the integrated console to be focused when a script selection is run or a script file is debugged."
419+
"description": "Switches focus to the console when a script selection is run or a script file is debugged. This is an accessibility feature. To disable it, set to false."
420420
}
421421
}
422422
}
423423
},
424424
"private": true
425-
}
425+
}

0 commit comments

Comments
 (0)