Skip to content

Commit 7fd7717

Browse files
committed
Fix mssql intellisense settings namespace name
1 parent 58763a2 commit 7fd7717

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

src/sql/parts/query/common/query.contribution.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -240,30 +240,30 @@ let registryProperties = {
240240
'description': localize('sql.showBatchTime', '[Optional] Should execution time be shown for individual batches'),
241241
'default': false
242242
},
243-
'sql.intelliSense.enableIntelliSense': {
243+
'mssql.intelliSense.enableIntelliSense': {
244244
'type': 'boolean',
245245
'default': true,
246-
'description': localize('sql.intelliSense.enableIntelliSense', 'Should IntelliSense be enabled')
246+
'description': localize('mssql.intelliSense.enableIntelliSense', 'Should IntelliSense be enabled')
247247
},
248-
'sql.intelliSense.enableErrorChecking': {
248+
'mssql.intelliSense.enableErrorChecking': {
249249
'type': 'boolean',
250250
'default': true,
251-
'description': localize('sql.intelliSense.enableErrorChecking', 'Should IntelliSense error checking be enabled')
251+
'description': localize('mssql.intelliSense.enableErrorChecking', 'Should IntelliSense error checking be enabled')
252252
},
253-
'sql.intelliSense.enableSuggestions': {
253+
'mssql.intelliSense.enableSuggestions': {
254254
'type': 'boolean',
255255
'default': true,
256-
'description': localize('sql.intelliSense.enableSuggestions', 'Should IntelliSense suggestions be enabled')
256+
'description': localize('mssql.intelliSense.enableSuggestions', 'Should IntelliSense suggestions be enabled')
257257
},
258-
'sql.intelliSense.enableQuickInfo': {
258+
'mssql.intelliSense.enableQuickInfo': {
259259
'type': 'boolean',
260260
'default': true,
261-
'description': localize('sql.intelliSense.enableQuickInfo', 'Should IntelliSense quick info be enabled')
261+
'description': localize('mssql.intelliSense.enableQuickInfo', 'Should IntelliSense quick info be enabled')
262262
},
263-
'sql.intelliSense.lowerCaseSuggestions': {
263+
'mssql.intelliSense.lowerCaseSuggestions': {
264264
'type': 'boolean',
265265
'default': false,
266-
'description': localize('sql.intelliSense.lowerCaseSuggestions', 'Should IntelliSense suggestions be lowercase')
266+
'description': localize('mssql.intelliSense.lowerCaseSuggestions', 'Should IntelliSense suggestions be lowercase')
267267
}
268268
};
269269

src/vs/workbench/electron-browser/shell.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,8 @@ export class WorkbenchShell {
261261
workspaceStats.reportCloudStats();
262262

263263
if ((platform.isLinux || platform.isMacintosh) && process.getuid() === 0) {
264-
this.messageService.show(Severity.Warning, nls.localize('runningAsRoot', "It is recommended not to run Code as 'root'."));
264+
// {{SQL CARBON EDIT}}
265+
this.messageService.show(Severity.Warning, nls.localize('runningAsRoot', "It is recommended not to run sqlops as 'root'."));
265266
}
266267
}
267268

0 commit comments

Comments
 (0)