Skip to content

Commit

Permalink
Merge pull request #2935 from SamVerschueren/iss2797
Browse files Browse the repository at this point in the history
fix TextEditorOptions declaration - fixes #2797
  • Loading branch information
alexdima committed Feb 19, 2016
2 parents cd853bb + 090e66b commit 9dea2c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -533,12 +533,12 @@ declare namespace vscode {
* - the rendering width of a tab character;
* - the number of spaces to insert when [insertSpaces](#TextEditorOptions.insertSpaces) is true.
*/
tabSize: number;
tabSize: number | string;

/**
* When pressing Tab insert [n](#TextEditorOptions.tabSize) spaces.
*/
insertSpaces: boolean;
insertSpaces: boolean | string;
}

/**
Expand Down

0 comments on commit 9dea2c3

Please sign in to comment.