Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Mar 19, 2020
1 parent 3cde29e commit f808318
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/vs/editor/common/standalone/standaloneEnums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ export enum CompletionItemKind {
Customcolor = 22,
Folder = 23,
TypeParameter = 24,
Snippet = 25
User = 25,
Issue = 26,
Snippet = 27
}

export enum CompletionItemTag {
Expand Down
12 changes: 11 additions & 1 deletion src/vs/monaco.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3767,6 +3767,14 @@ declare namespace monaco.editor {
* Show typeParameter-suggestions.
*/
showTypeParameters?: boolean;
/**
* Show issue-suggestions.
*/
showIssues?: boolean;
/**
* Show user-suggestions.
*/
showUsers?: boolean;
/**
* Show snippet-suggestions.
*/
Expand Down Expand Up @@ -5389,7 +5397,9 @@ declare namespace monaco.languages {
Customcolor = 22,
Folder = 23,
TypeParameter = 24,
Snippet = 25
User = 25,
Issue = 26,
Snippet = 27
}

export interface CompletionItemLabel {
Expand Down

0 comments on commit f808318

Please sign in to comment.