mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-08 17:24:01 -05:00
Implemented match case and whole wrd (#8904)
* Implemented match case and whole wrd * removed unused ref * renamed test method * escape \ * refactored search * added more tests * updated tests appying match case and whole word to spcl characters * regex update * spcl to special * non-capturing group added to the regex * test
This commit is contained in:
@@ -135,7 +135,7 @@ export class NotebookFindModelStub implements INotebookFindModel {
|
||||
findPrevious(): Promise<NotebookRange> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
find(exp: string, maxMatches?: number): Promise<NotebookRange> {
|
||||
find(exp: string, matchCase?: boolean, wholeWord?: boolean, maxMatches?: number): Promise<NotebookRange> {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
clearFind(): void {
|
||||
|
||||
Reference in New Issue
Block a user