Files
bitburner-src/src/ScriptEditor/ui/Options.ts
T
Snarling 4166c09bd4 More script editor options (#386)
* Options are responsive again (fix from previous changes)
* Better height control on the monaco container using flexbox.
* Added options for tab size, auto-detect indentation per-file, font family, and font ligatures.
2023-02-24 07:37:29 -05:00

13 lines
306 B
TypeScript

export type WordWrapOptions = "on" | "off" | "bounded" | "wordWrapColumn";
export type Options = {
theme: string;
insertSpaces: boolean;
tabSize: number;
detectIndentation: boolean;
fontFamily: string;
fontSize: number;
fontLigatures: boolean;
wordWrap: WordWrapOptions;
vim: boolean;
};