alexmojaki/birdseye

Awkward indentation in multiline expressions

alexmojaki opened this issue · 0 comments

Because the browser has to render each expression as a rectangle, some of the whitespace used for indentation in a multiline expression becomes 'redundant' and the result looks weird:

screen shot 2017-10-27 at 17 09 46

This is how it should look:

def foo():
    print('hello',
          'world')