You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/SettingsReference.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,7 @@ The extensions in the InterSystems ObjectScript Extension Pack provide many sett
78
78
|`"objectscript.serverSourceControl .disableOtherActionTriggers"`| Prevent server-side source control 'other action' triggers from firing. |`boolean`|`false`||
79
79
|`"objectscript.showExplorer"`| Show the ObjectScript Explorer view. |`boolean`|`true`||
80
80
|`"objectscript.showGeneratedFileDecorations"`| Controls whether a badge is shown in the file explorer and open editors view for generated files. |`boolean`|`true`||
81
+
|`"objectscript.showProposedApiPrompt"`| Controls whether a prompt to enable VS Code proposed APIs is shown when a server-side workspace folder is opened. |`boolean`|`true`||
81
82
|`"objectscript.studioActionDebugOutput"`| Log in JSON format the action that VS Code should perform as requested by the server. |`boolean`|`false`| Actions will be logged to the `ObjectScript` Output channel. |
82
83
|`"objectscript.suppressCompileErrorMessages"`| Suppress popup messages about errors during compile, but still focus on Output view. |`boolean`|`false`||
83
84
|`"objectscript.suppressCompileMessages"`| Suppress popup messages about successful compile. |`boolean`|`true`||
// Prompt the user with the proposed api install instructions
564
+
vscode.window
565
+
.showInformationMessage(
566
+
"[Searching across](https://code.visualstudio.com/docs/editor/codebasics#_search-across-files) and [quick opening](https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_quick-open) server-side files requires [VS Code proposed APIs](https://code.visualstudio.com/api/advanced-topics/using-proposed-api). Show the instructions?",
0 commit comments