You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: nls.localize('terminal.integrated.enableFileLinks',"Whether to enable file links in the terminal. Links can be slow when working on a network drive in particular because each file link is verified against the file system."),
344
344
type: 'boolean',
345
345
default: true
346
+
},
347
+
'terminal.integrated.unicodeVersion': {
348
+
type: 'string',
349
+
enum: ['6','11'],
350
+
enumDescriptions: [
351
+
nls.localize('terminal.integrated.unicodeVersion.six',"Version 6 of unicode, this is an older version which should work better on older systems."),
352
+
nls.localize('terminal.integrated.unicodeVersion.eleven',"Version 11 of unicode, this version provides better support for emoji on modern systems.")
353
+
],
354
+
default: '11',
355
+
description: nls.localize('terminal.integrated.unicodeVersion',"Controls what version of unicode to use when evaluating the width of characters in the terminal. If you experience emoji not taking up the right amount of space or being able to backspace beyond your prompt character then you may want to try tweaking this setting.")
0 commit comments