outdent method

void outdent()

Decrease indentation level

Implementation

void outdent() {
  if (_currentIndent > 0) _currentIndent--;
}