We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c5f5f commit a9a8a18Copy full SHA for a9a8a18
src/settings.ts
@@ -106,8 +106,14 @@ export function load(): ISettings {
106
createTemporaryIntegratedConsole: false,
107
};
108
109
+ // TODO: Remove when PSReadLine is out of preview
110
+ const featureFlags = [];
111
+ if (utils.isWindowsOS()) {
112
+ featureFlags.push("PSReadLine");
113
+ }
114
+
115
const defaultDeveloperSettings: IDeveloperSettings = {
- featureFlags: [],
116
+ featureFlags: featureFlags,
117
powerShellExePath: undefined,
118
bundledModulesPath: "../../../PowerShellEditorServices/module",
119
editorServicesLogLevel: "Normal",
0 commit comments