insertSpaces property
Object?
get
insertSpaces
When pressing Tab insert {@link TextEditorOptions.tabSize n} spaces.
When getting a text editor's options, this property will always be a boolean (resolved).
When setting a text editor's options, this property is optional and it can be a boolean or "auto"
.
Implementation
_i2.Object? get insertSpaces => _i5.getProperty(
this,
'insertSpaces',
);
set
insertSpaces
(Object? value)
Implementation
set insertSpaces(_i2.Object? value) {
_i5.setProperty(
this,
'insertSpaces',
value ?? _i6.undefined,
);
}