This PR removes the _uniform_outdent_limit function and integrates it's functionality into the _uniform_outdent function.
Previously, the _uniform_outdent_limit function was just a clone of _uniform_outdent that allowed one to set a maximum level of outdentation to occur.
The new, re-written _uniform_outdent function allows for this functionality as well as setting a minimum outdentation level, to force all lines to be outdented by min_outdent or greater.
This PR removes the
_uniform_outdent_limit
function and integrates it's functionality into the_uniform_outdent
function.Previously, the
_uniform_outdent_limit
function was just a clone of_uniform_outdent
that allowed one to set a maximum level of outdentation to occur. The new, re-written_uniform_outdent
function allows for this functionality as well as setting a minimum outdentation level, to force all lines to be outdented bymin_outdent
or greater.