From 027bc9535ef66ba59dbc2f2b4f2c64086c1252a2 Mon Sep 17 00:00:00 2001 From: npezza93 Date: Tue, 23 Jan 2018 20:57:31 -0500 Subject: [PATCH] Pass false for isSelection so the right half of the cell wont select the next element --- src/handlers/AltClickHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/AltClickHandler.ts b/src/handlers/AltClickHandler.ts index e595ce49..59962d96 100644 --- a/src/handlers/AltClickHandler.ts +++ b/src/handlers/AltClickHandler.ts @@ -25,7 +25,7 @@ export class AltClickHandler { this._terminal.options.lineHeight, this._terminal.cols, this._terminal.rows, - true + false ).map((coordinate: number) => { return coordinate - 1; });