Skip to content

Commit

Permalink
fix: example
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed May 31, 2020
1 parent 465f35f commit cac4926
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions schemes/Scheme-Example.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,9 @@
"line_diff_added": "var(diffAdded)",
"line_diff_deleted": "var(diffDeleted)",
"line_diff_modified": "var(diffModified)",
"line_diff_width": "2",
"line_diff_width": 2,
"line_highlight": "color(var(foreground) alpha(0.1))",
"misspelling": "var(red)",
"rulers": "color(var(foreground) alpha(0.5))",
"selection": "color(var(foreground) alpha(0.10))",
"selection_border": "var(cyan)",
"selection_corner_radius": "cut",
Expand Down
3 changes: 1 addition & 2 deletions src/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ export const defaultGlobals: IUi = {
line_diff_added: 'var(diffAdded)',
line_diff_deleted: 'var(diffDeleted)',
line_diff_modified: 'var(diffModified)',
line_diff_width: '2',
line_diff_width: 2,
line_highlight: 'color(var(foreground) alpha(0.1))',
misspelling: 'var(red)',
rulers: 'color(var(foreground) alpha(0.5))',
selection: 'color(var(foreground) alpha(0.10))',
selection_border: 'var(cyan)',
selection_corner_radius: 'cut',
Expand Down
6 changes: 3 additions & 3 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ export interface IUi {
/** The color used to draw the indent guides for the parent indentation levels of the indentation level containing the caret. */
active_guide?: string;
/** How brackets are highlighted when the caret is next to one. */
brackets_options?: 'underline' | 'stippled_underline' | 'squiggly_underline' | 'foreground' | 'bold' | 'italic';
brackets_options?: string;
/** The color to use when drawing the style specified by `brackets_options`. */
brackets_foreground?: string;
/** How brackets are highlighted when the caret is positioned in between a pair of brackets. */
bracket_contents_options?: 'underline' | 'stippled_underline' | 'squiggly_underline' | 'foreground';
bracket_contents_options?: string;
/** The color to use when drawing the style specified by `brackets_contents_options`. */
bracket_contents_foreground?: string;
/** How tags are highlighted when the caret is inside of one. */
tags_options?: 'underline' | 'stippled_underline' | 'squiggly_underline' | 'foreground';
tags_options?: string;
/** he color to use when drawing the style specified by tags_options. */
tags_foreground?: string;
/** The color of the shadow used to show when a text area can be horizontally scrolled. */
Expand Down

0 comments on commit cac4926

Please sign in to comment.