Skip to content

Commit

Permalink
Merge pull request #1 from Microsoft/master
Browse files Browse the repository at this point in the history
Map 'stylus' language to 'css' to fix microsoft#6062
  • Loading branch information
xiexie920 committed May 9, 2016
2 parents 7ace9f8 + 65966e3 commit edc16a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/vs/workbench/parts/emmet/node/editorAccessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ export class EditorAccessor implements emmet.Editor {
if (syntax === 'sass') { // sass is really sccs... map it to scss
return'scss';
}
if (syntax === 'stylus') { // map stylus to css
return'css';
}
return syntax;
}

Expand Down

0 comments on commit edc16a6

Please sign in to comment.