mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 00:32:51 +02:00
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.
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
export type WordWrapOptions = "on" | "off" | "bounded" | "wordWrapColumn";
|
||||
export interface Options {
|
||||
export type Options = {
|
||||
theme: string;
|
||||
insertSpaces: boolean;
|
||||
tabSize: number;
|
||||
detectIndentation: boolean;
|
||||
fontFamily: string;
|
||||
fontSize: number;
|
||||
fontLigatures: boolean;
|
||||
wordWrap: WordWrapOptions;
|
||||
vim: boolean;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user