Skip to content

Commit

Permalink
Merge pull request #1804 from bouzidanas/fix-foldstyle-option
Browse files Browse the repository at this point in the history
Fix foldstyle option
  • Loading branch information
securingsincity authored Mar 23, 2024
2 parents a659155 + 8e948ec commit f3f5b19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export interface IAceOptions {
useSoftTabs?: boolean;
tabSize?: number;
wrap?: boolean;
foldStyle?: boolean;
foldStyle?: "markbegin" | "markbeginend" | "manual";
/** path to a mode e.g "ace/mode/text" */
mode?: string;
/** on by default */
Expand Down
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export interface AceOptions {
useSoftTabs?: boolean
tabSize?: number
wrap?: boolean
foldStyle?: boolean
foldStyle?: "markbegin"|"markbeginend"|"manual"
/** path to a mode e.g "ace/mode/text" */
mode?: string
/** on by default */
Expand Down

0 comments on commit f3f5b19

Please sign in to comment.