Current situation: when using viewcode, source links appear immediately after the method declaration. This makes method declarations less readable, particularly when they include a return type.
Feature request: a togglable option to right-align these (or have it appear in the upper-right of the box)
Poor man's implementation (via custom.css)
span.viewcode-link {
float: right;
}
Proposed user-facing toggle:
html_theme_options = {
'right_align_source': True, //default false
}