We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4491fd5 commit 16d4625Copy full SHA for 16d4625
1 file changed
src/vs/workbench/contrib/terminal/browser/terminalInstance.ts
@@ -472,7 +472,8 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
472
fastScrollModifier: 'alt',
473
fastScrollSensitivity: editorOptions.fastScrollSensitivity,
474
scrollSensitivity: editorOptions.mouseWheelScrollSensitivity,
475
- rendererType: config.rendererType === 'auto' || config.rendererType === 'experimentalWebgl' ? 'canvas' : config.rendererType
+ rendererType: config.rendererType === 'auto' || config.rendererType === 'experimentalWebgl' ? 'canvas' : config.rendererType,
476
+ wordSeparator: ' ()[]{}\',:;"`'
477
});
478
this._xterm = xterm;
479
this._xtermCore = (xterm as any)._core as XTermCore;
0 commit comments