From c739d2fe870ac911674f9f6955daf21e9068545b Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Wed, 10 Oct 2018 14:05:23 +0200 Subject: [PATCH] Remove underscore from non word characters list This is the upstream fix for Microsoft/vscode#59379 --- src/addons/search/SearchHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addons/search/SearchHelper.ts b/src/addons/search/SearchHelper.ts index d07c6b2c..f23a8c58 100644 --- a/src/addons/search/SearchHelper.ts +++ b/src/addons/search/SearchHelper.ts @@ -4,7 +4,7 @@ */ import { ISearchHelper, ISearchAddonTerminal, ISearchOptions, ISearchResult } from './Interfaces'; -const nonWordCharacters = ' ~!@#$%^&*()_+`-=[]{}|\;:"\',./<>?'; +const nonWordCharacters = ' ~!@#$%^&*()+`-=[]{}|\;:"\',./<>?'; /** * A class that knows how to search the terminal and how to display the results.