Add onWillSaveNotebookDocument
See original GitHub issueThis would match onWillSaveTextDocument
but for notebook docs instead
As parts of this, we should allow extensions to perform notebook edits before the save happens
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Word Add-in | Document Generation API | Adobe PDF Services
Word Add-in. Document Generation Word Add-in provides the capability to author templates to generate data-driven Word and PDF documents.
Read more >How to Add Documents in Targets and Integrations
To Add Documents: Navigate to the Integrations menu. Select All Integrations. Select an Integration from the Integration Name column.
Read more >Documentation for version 4.0, 4.1 and 4.2 - Add-On Products
Summary During the configuration of Digital Sign Service (DSS) for Server with Active Directory in O365 (Azure AD), we need to create an...
Read more >Digital Red Book: How to Add Documents to the Library
You can add your own documents to the Library for each location. Add files stored locally or files stored in the cloud. Files...
Read more >Insert a document or object - Caseware
You can insert documents and objects from a variety of different file formats into a CaseView document. Sub-documents (other CaseView documents); External ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jrieken I am asking for it! It’d be very useful, thanks!
Related PR/issue: https://github.com/halcyon-tech/vscode-ibmi/pull/818#issuecomment-1220733058
We would use this in nbdev (tracking here: https://github.com/fastai/nbdev/issues/952). We remove unneeded metadata from notebooks on-save, for cleaner diffs and less chance of merge conflicts. It’s very easy to implement with Jupyter Notebook/Lab via
ContentsManager.pre_save_hook
. We add this to the relevant config file:How could we get similar behaviour for our VSCode users? Is there any workaround while
onWillSaveNotebookDocument
doesn’t exist?