Skip to content

Commit

Permalink
fix: Add missing options to EditorOptions (#5003)
Browse files Browse the repository at this point in the history
  • Loading branch information
dodgex committed Nov 30, 2022
1 parent fa64f84 commit 451b63f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ export namespace Ace {
behavioursEnabled: boolean;
wrapBehavioursEnabled: boolean;
enableAutoIndent: boolean;
enableBasicAutocompletion: boolean | Completer[],
enableLiveAutocompletion: boolean | Completer[],
enableSnippets: boolean,
autoScrollEditorIntoView: boolean;
keyboardHandler: string | null;
placeholder: string;
Expand Down Expand Up @@ -935,4 +938,4 @@ export const Range: {
new(startRow: number, startColumn: number, endRow: number, endColumn: number): Ace.Range;
fromPoints(start: Ace.Point, end: Ace.Point): Ace.Range;
comparePoints(p1: Ace.Point, p2: Ace.Point): number;
};
};

0 comments on commit 451b63f

Please sign in to comment.