anongit
anongit
Aa a workaround it's possible to click the button programmatically: ```python from IPython.display import Javascript, display clear_results_js = Javascript(''' [...document.querySelectorAll('button')] .filter(x => x.innerHTML == 'Clear Results') .forEach(x => x.click()); ''')...
@dsanalytics I posted it here because I had the same use case, I wanted to clear output between subsequent cell code runs, but keep all output from the current run....
One-liner fix would be to prepend results instead of append.
@dsanalytics Fair enough. Auto-scroll to bottom is already merged in #97 as it turns out.