From 8802cfffbcd201b29763138c61cf22ffcfa0407e Mon Sep 17 00:00:00 2001 From: Janne Julkunen Date: Fri, 12 Oct 2018 06:12:11 +0300 Subject: [PATCH] Added missing config options to the interfaces --- src/lib/ace.interfaces.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/ace.interfaces.ts b/src/lib/ace.interfaces.ts index ef20a91..622c623 100644 --- a/src/lib/ace.interfaces.ts +++ b/src/lib/ace.interfaces.ts @@ -31,6 +31,8 @@ export interface AceConfigInterface { highlightActiveLine?: boolean, highlightSelectedWord?: boolean, wrapBehavioursEnabled?: boolean, + copyWithEmptySelection?: boolean, + navigateWithinSoftTabs?: boolean, autoScrollEditorIntoView?: boolean, mode?: string, @@ -60,6 +62,7 @@ export interface AceConfigInterface { fixedWidthGutter?: boolean, printMarginColumn?: boolean, displayIndentGuides?: boolean, + highlightGutterLine?: boolean, hScrollBarAlwaysVisible?: boolean, vScrollBarAlwaysVisible?: boolean, @@ -79,6 +82,8 @@ export class AceConfig implements AceConfigInterface { highlightActiveLine?: boolean; highlightSelectedWord?: boolean; wrapBehavioursEnabled?: boolean; + copyWithEmptySelection?: boolean; + navigateWithinSoftTabs?: boolean; autoScrollEditorIntoView?: boolean; mode?: string; @@ -108,6 +113,7 @@ export class AceConfig implements AceConfigInterface { fixedWidthGutter?: boolean; printMarginColumn?: boolean; displayIndentGuides?: boolean; + highlightGutterLine?: boolean; hScrollBarAlwaysVisible?: boolean; vScrollBarAlwaysVisible?: boolean;