Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

While with many conditions

while (not found_error) and (not found_warning) and (not found_exit):
    do_the_real_stuff()

while True:
    line = get_next_line()

    if found_error:
        break

    if found_warning:
        break

    if found_exit:
        break

    do_the_real_stuff()