提交 04c9c8c8 编写于 作者: S svipas

Add showIcons and maxSuggestionsToShow in commonEditorConfig

上级 91411b05
......@@ -679,6 +679,18 @@ const editorConfiguration: IConfigurationNode = {
default: true,
description: nls.localize('suggest.snippetsPreventQuickSuggestions', "Control whether an active snippet prevents quick suggestions.")
},
'editor.suggest.showIcons': {
type: 'boolean',
default: EDITOR_DEFAULTS.contribInfo.suggest.showIcons,
description: nls.localize('suggest.showIcons', "Controls whether to show or hide icons in suggestions.")
},
'editor.suggest.maxSuggestionsToShow': {
type: 'number',
default: EDITOR_DEFAULTS.contribInfo.suggest.maxSuggestionsToShow,
minimum: 1,
maximum: 12,
description: nls.localize('suggest.maxSuggestionsToShow', "Controls how much suggestions to show in suggestions.")
},
'editor.selectionHighlight': {
'type': 'boolean',
'default': EDITOR_DEFAULTS.contribInfo.selectionHighlight,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册