Merge pull request #1743 from alexr00/alexr00/nonWordChars

Remove underscore from non word characters list
This commit is contained in:
Daniel Imms
2018-10-10 14:08:39 -07:00
committed by GitHub
+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.