Add missing escape

Previously the \ was unnecessarily escaping the ';'.
This commit is contained in:
Erik Welander
2021-08-04 11:31:32 -07:00
committed by GitHub
parent 522c8bf3af
commit 4c4160ae03
+1 -1
View File
@@ -23,7 +23,7 @@ export interface ISearchResult {
row: number;
}
const NON_WORD_CHARACTERS = ' ~!@#$%^&*()+`-=[]{}|\;:"\',./<>?';
const NON_WORD_CHARACTERS = ' ~!@#$%^&*()+`-=[]{}|\\;:"\',./<>?';
const LINES_CACHE_TIME_TO_LIVE = 15 * 1000; // 15 secs
export class SearchAddon implements ITerminalAddon {