mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix mssql intellisense settings namespace name
This commit is contained in:
@@ -240,30 +240,30 @@ let registryProperties = {
|
|||||||
'description': localize('sql.showBatchTime', '[Optional] Should execution time be shown for individual batches'),
|
'description': localize('sql.showBatchTime', '[Optional] Should execution time be shown for individual batches'),
|
||||||
'default': false
|
'default': false
|
||||||
},
|
},
|
||||||
'sql.intelliSense.enableIntelliSense': {
|
'mssql.intelliSense.enableIntelliSense': {
|
||||||
'type': 'boolean',
|
'type': 'boolean',
|
||||||
'default': true,
|
'default': true,
|
||||||
'description': localize('sql.intelliSense.enableIntelliSense', 'Should IntelliSense be enabled')
|
'description': localize('mssql.intelliSense.enableIntelliSense', 'Should IntelliSense be enabled')
|
||||||
},
|
},
|
||||||
'sql.intelliSense.enableErrorChecking': {
|
'mssql.intelliSense.enableErrorChecking': {
|
||||||
'type': 'boolean',
|
'type': 'boolean',
|
||||||
'default': true,
|
'default': true,
|
||||||
'description': localize('sql.intelliSense.enableErrorChecking', 'Should IntelliSense error checking be enabled')
|
'description': localize('mssql.intelliSense.enableErrorChecking', 'Should IntelliSense error checking be enabled')
|
||||||
},
|
},
|
||||||
'sql.intelliSense.enableSuggestions': {
|
'mssql.intelliSense.enableSuggestions': {
|
||||||
'type': 'boolean',
|
'type': 'boolean',
|
||||||
'default': true,
|
'default': true,
|
||||||
'description': localize('sql.intelliSense.enableSuggestions', 'Should IntelliSense suggestions be enabled')
|
'description': localize('mssql.intelliSense.enableSuggestions', 'Should IntelliSense suggestions be enabled')
|
||||||
},
|
},
|
||||||
'sql.intelliSense.enableQuickInfo': {
|
'mssql.intelliSense.enableQuickInfo': {
|
||||||
'type': 'boolean',
|
'type': 'boolean',
|
||||||
'default': true,
|
'default': true,
|
||||||
'description': localize('sql.intelliSense.enableQuickInfo', 'Should IntelliSense quick info be enabled')
|
'description': localize('mssql.intelliSense.enableQuickInfo', 'Should IntelliSense quick info be enabled')
|
||||||
},
|
},
|
||||||
'sql.intelliSense.lowerCaseSuggestions': {
|
'mssql.intelliSense.lowerCaseSuggestions': {
|
||||||
'type': 'boolean',
|
'type': 'boolean',
|
||||||
'default': false,
|
'default': false,
|
||||||
'description': localize('sql.intelliSense.lowerCaseSuggestions', 'Should IntelliSense suggestions be lowercase')
|
'description': localize('mssql.intelliSense.lowerCaseSuggestions', 'Should IntelliSense suggestions be lowercase')
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -261,7 +261,8 @@ export class WorkbenchShell {
|
|||||||
workspaceStats.reportCloudStats();
|
workspaceStats.reportCloudStats();
|
||||||
|
|
||||||
if ((platform.isLinux || platform.isMacintosh) && process.getuid() === 0) {
|
if ((platform.isLinux || platform.isMacintosh) && process.getuid() === 0) {
|
||||||
this.messageService.show(Severity.Warning, nls.localize('runningAsRoot', "It is recommended not to run Code as 'root'."));
|
// {{SQL CARBON EDIT}}
|
||||||
|
this.messageService.show(Severity.Warning, nls.localize('runningAsRoot', "It is recommended not to run sqlops as 'root'."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user