mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 01:25:38 -05:00
Fix/search text cell on edit (#9685)
* find in text cell changes * remove prev decorations * update find index on cell edit * added test * addressed comments * emit error
This commit is contained in:
@@ -123,7 +123,6 @@ export class NotebookModelStub implements INotebookModel {
|
||||
}
|
||||
|
||||
export class NotebookFindModelStub implements INotebookFindModel {
|
||||
|
||||
getFindCount(): number {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
@@ -158,6 +157,9 @@ export class NotebookFindModelStub implements INotebookFindModel {
|
||||
findMatches: NotebookFindMatch[];
|
||||
findExpression: string;
|
||||
onFindCountChange: vsEvent.Event<number>;
|
||||
getIndexByRange(range: NotebookRange): number {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
}
|
||||
|
||||
export class NotebookManagerStub implements INotebookManager {
|
||||
|
||||
Reference in New Issue
Block a user