Skip to content

Commit 16d4625

Browse files
committed
Include backtick in terminal word separators
Fixes microsoft#84483
1 parent 4491fd5 commit 16d4625

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/vs/workbench/contrib/terminal/browser/terminalInstance.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,8 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
472472
fastScrollModifier: 'alt',
473473
fastScrollSensitivity: editorOptions.fastScrollSensitivity,
474474
scrollSensitivity: editorOptions.mouseWheelScrollSensitivity,
475-
rendererType: config.rendererType === 'auto' || config.rendererType === 'experimentalWebgl' ? 'canvas' : config.rendererType
475+
rendererType: config.rendererType === 'auto' || config.rendererType === 'experimentalWebgl' ? 'canvas' : config.rendererType,
476+
wordSeparator: ' ()[]{}\',:;"`'
476477
});
477478
this._xterm = xterm;
478479
this._xtermCore = (xterm as any)._core as XTermCore;

0 commit comments

Comments
 (0)