mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Refresh master with initial release/0.24 snapshot (#332)
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
This commit is contained in:
@@ -213,7 +213,7 @@ const editorConfiguration: IConfigurationNode = {
|
||||
'type': 'number'
|
||||
},
|
||||
'default': EDITOR_DEFAULTS.viewInfo.rulers,
|
||||
'description': nls.localize('rulers', "Columns at which to show vertical rulers")
|
||||
'description': nls.localize('rulers', "Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty")
|
||||
},
|
||||
'editor.wordSeparators': {
|
||||
'type': 'string',
|
||||
@@ -410,7 +410,7 @@ const editorConfiguration: IConfigurationNode = {
|
||||
'editor.autoIndent': {
|
||||
'type': 'boolean',
|
||||
'default': EDITOR_DEFAULTS.autoIndent,
|
||||
'description': nls.localize('autoIndent', "Controls if the editor should automatically adjust the indentation when users type, paste or move lines. Indentation rules of the language must be available. ")
|
||||
'description': nls.localize('autoIndent', "Controls if the editor should automatically adjust the indentation when users type, paste or move lines. Indentation rules of the language must be available.")
|
||||
},
|
||||
'editor.suggestOnTriggerCharacters': {
|
||||
'type': 'boolean',
|
||||
@@ -598,6 +598,11 @@ const editorConfiguration: IConfigurationNode = {
|
||||
'default': EDITOR_DEFAULTS.contribInfo.colorDecorators,
|
||||
'description': nls.localize('colorDecorators', "Controls whether the editor should render the inline color decorators and color picker.")
|
||||
},
|
||||
'editor.lightbulb.enabled': {
|
||||
'type': 'boolean',
|
||||
'default': EDITOR_DEFAULTS.contribInfo.lightbulbEnabled,
|
||||
'description': nls.localize('codeActions', "Enables the code action lightbulb")
|
||||
},
|
||||
'diffEditor.renderSideBySide': {
|
||||
'type': 'boolean',
|
||||
'default': true,
|
||||
|
||||
Reference in New Issue
Block a user