``` from prompt_toolkit import prompt def get_toolbar(): return "toolbar" prompt(">>> ", bottom_toolbar=get_toolbar) ``` How to add blank line after prompt or before bottom toolbar? 