Skip to content

Commit

Permalink
Remove underscore from non word characters list
Browse files Browse the repository at this point in the history
This is the upstream fix for microsoft/vscode#59379
  • Loading branch information
alexr00 committed Oct 10, 2018
1 parent febc3ba commit c739d2f
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 c739d2f

Please sign in to comment.