Skip to content

Commit

Permalink
Merge pull request #1743 from alexr00/alexr00/nonWordChars
Browse files Browse the repository at this point in the history
Remove underscore from non word characters list
  • Loading branch information
Tyriar committed Oct 10, 2018
2 parents febc3ba + c739d2f commit 58003d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/search/SearchHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 58003d4

Please sign in to comment.