Skip to content

Commit

Permalink
Added missing config options to the interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Oct 12, 2018
1 parent 9502ca5 commit 8802cff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib/ace.interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export interface AceConfigInterface {
highlightActiveLine?: boolean,
highlightSelectedWord?: boolean,
wrapBehavioursEnabled?: boolean,
copyWithEmptySelection?: boolean,
navigateWithinSoftTabs?: boolean,
autoScrollEditorIntoView?: boolean,

mode?: string,
Expand Down Expand Up @@ -60,6 +62,7 @@ export interface AceConfigInterface {
fixedWidthGutter?: boolean,
printMarginColumn?: boolean,
displayIndentGuides?: boolean,
highlightGutterLine?: boolean,
hScrollBarAlwaysVisible?: boolean,
vScrollBarAlwaysVisible?: boolean,

Expand All @@ -79,6 +82,8 @@ export class AceConfig implements AceConfigInterface {
highlightActiveLine?: boolean;
highlightSelectedWord?: boolean;
wrapBehavioursEnabled?: boolean;
copyWithEmptySelection?: boolean;
navigateWithinSoftTabs?: boolean;
autoScrollEditorIntoView?: boolean;

mode?: string;
Expand Down Expand Up @@ -108,6 +113,7 @@ export class AceConfig implements AceConfigInterface {
fixedWidthGutter?: boolean;
printMarginColumn?: boolean;
displayIndentGuides?: boolean;
highlightGutterLine?: boolean;
hScrollBarAlwaysVisible?: boolean;
vScrollBarAlwaysVisible?: boolean;

Expand Down

0 comments on commit 8802cff

Please sign in to comment.