I would like to have my library functions update on save so they are immediatly available in my notebook file where the library is imported. Effectively like clicking the "Run All Code" button after saving the library (.wl file) so the updated function is immediatly available in the notebook (.nb file). See picture below.
Asked
Active
Viewed 164 times
1

SetOptions[InputNotebook[], AutoGeneratedPackage -> Automatic]. – Rohit Namjoshi Jul 03 '20 at 15:06AutoGeneratedPackagewhich creates the.wlfile when the notebook is saved and then IGetthe file in the notebook in which I want to use the definitions. – Rohit Namjoshi Jul 08 '20 at 19:35