SpacesToTabsConverter

class SpacesToTabsConverter(val columns: Int = 4) : Converter<String, String>

Constructors

Link copied to clipboard
constructor(columns: Int = 4)

Properties

Link copied to clipboard
val columns: Int = 4

Functions

Link copied to clipboard
open override fun backwards(value: String): String

Given a line containing tab characters for indentation, convert it to use spaces instead.

Link copied to clipboard
open override fun forwards(value: String): String

Given a line containing spaces for indentation, convert it to use tabs instead.