From 1bc246323c32c2b9edd9df67916b3b9dd788319f Mon Sep 17 00:00:00 2001 From: Geraldo Neto Date: Tue, 15 Oct 2019 22:42:12 -0300 Subject: [PATCH 1/2] Add comma as a default word separator --- src/common/services/OptionsService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/services/OptionsService.ts b/src/common/services/OptionsService.ts index bde40c11..a9b0cc19 100644 --- a/src/common/services/OptionsService.ts +++ b/src/common/services/OptionsService.ts @@ -49,7 +49,7 @@ export const DEFAULT_OPTIONS: ITerminalOptions = Object.freeze({ screenKeys: false, cancelEvents: false, useFlowControl: false, - wordSeparator: ' ()[]{}\'"' + wordSeparator: ' ()[]{}\',"' }); /** From 9f80ce25c20a3b430287f25d2dc310ed92615934 Mon Sep 17 00:00:00 2001 From: Geraldo Neto Date: Wed, 16 Oct 2019 19:23:50 -0300 Subject: [PATCH 2/2] Add : and ; to the word separator --- src/common/services/OptionsService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/services/OptionsService.ts b/src/common/services/OptionsService.ts index a9b0cc19..9230421c 100644 --- a/src/common/services/OptionsService.ts +++ b/src/common/services/OptionsService.ts @@ -49,7 +49,7 @@ export const DEFAULT_OPTIONS: ITerminalOptions = Object.freeze({ screenKeys: false, cancelEvents: false, useFlowControl: false, - wordSeparator: ' ()[]{}\',"' + wordSeparator: ' ()[]{}\',:;"' }); /**