-
Notifications
You must be signed in to change notification settings - Fork 29.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add search for output rich content in notebooks #173978
Conversation
src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.ts
Show resolved
Hide resolved
src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.ts
Outdated
Show resolved
Hide resolved
} | ||
|
||
export interface INotebookPatternInfo { | ||
isNotebookMarkdownInput?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the names, is it like isNotebookMarkdownInputEnabled
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the naming, but yes, it's whether we search the notebook's cell source on markdown cells.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Like the idea of reusing the view for NotebookFindFilter. Now we can move the visibility control out of NotebookFindWidget and have it only in the SearchInput.
src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.css
Outdated
Show resolved
Hide resolved
src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.ts
Show resolved
Hide resolved
src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.ts
Outdated
Show resolved
Hide resolved
src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.ts
Outdated
Show resolved
Hide resolved
src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.ts
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andreamah thank you for making the change in notebook land minimal. Great work!
Fixes #164926