Remove underscore from non word characters list

This is the upstream fix for Microsoft/vscode#59379
This commit is contained in:
Alex Ross
2018-10-10 14:05:23 +02:00
parent febc3ba2b8
commit c739d2fe87
+1 -1
View File
@@ -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.