Don't rescale by default

Part of #207739
This commit is contained in:
Daniel Imms 2024-03-22 10:46:54 -07:00
parent c4e35f0f03
commit 50b096c575
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -563,7 +563,7 @@ const terminalConfiguration: IConfigurationNode = {
[TerminalSettingId.RescaleOverlappingGlyphs]: {
markdownDescription: localize('terminal.integrated.rescaleOverlappingGlyphs', "Whether to rescale glyphs horizontally that are a single cell wide but have glyphs that would overlap following cell(s). This typically happens for ambiguous width characters (eg. the roman numeral characters U+2160+) which aren't featured in monospace fonts. Emoji glyphs are never rescaled."),
type: 'boolean',
default: true
default: false
},
[TerminalSettingId.AutoReplies]: {
markdownDescription: localize('terminal.integrated.autoReplies', "A set of messages that, when encountered in the terminal, will be automatically responded to. Provided the message is specific enough, this can help automate away common responses.\n\nRemarks:\n\n- Use {0} to automatically respond to the terminate batch job prompt on Windows.\n- The message includes escape sequences so the reply might not happen with styled text.\n- Each reply can only happen once every second.\n- Use {1} in the reply to mean the enter key.\n- To unset a default key, set the value to null.\n- Restart VS Code if new don't apply.", '`"Terminate batch job (Y/N)": "Y\\r"`', '`"\\r"`'),