Feature Request: use `set_config` to make `lo` default to verbose
Hi,
Thanks for the great work on this project, its very helpful!
I've found it is often still useful to maintain the verbose output for all prints, but this is currently not configurable and requires lo(..., verbose=True) to be repeated frequently.
A workaround I've been using is
from lovely_numpy import lo, set_config
from functools import partial
lo = partial(lo, verbose=True)
but it's not quite as elegant as something like toggling set_config(verbose=True).
Any chance this could be included in the config in the future?
Heya. Sounds reasonable. Can't promise I'll do it this year, but I don't mind this feature.
@alexstoken It took a while, but I added the feature. You can try with git, or wait a bit for a release - I'll touch up a couple more things.