Skip to content

Commit

Permalink
Add 'turn' to <angle> and 'dppx' to <resolution> data types for CSS a…
Browse files Browse the repository at this point in the history
…uto-complete #294
  • Loading branch information
aeschli committed Nov 20, 2015
1 parent 5149b21 commit 843fd53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/languages/css/common/services/languageFacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ export var colorKeywords : { [name:string]:string } = {

export var units : { [unitName:string]:string[] } = {
'length': ['em', 'rem', 'ex', 'px', 'cm', 'mm', 'in', 'pt', 'pc', 'cc'],
'angle': ['deg', 'rad', 'grad'],
'angle': ['deg', 'rad', 'grad', 'turn'],
'time': ['ms', 's'],
'frequency': ['Hz', 'kHz'],
'resolution': ['dpi', 'dpcm'],
'resolution': ['dpi', 'dpcm', 'dppx'],
'percentage': ['%']
};

Expand Down

0 comments on commit 843fd53

Please sign in to comment.