Skip to content

Commit

Permalink
Support URL schemes other than file or untitled
Browse files Browse the repository at this point in the history
  • Loading branch information
itowlson committed Aug 29, 2019
1 parent 5da9f3d commit b895ee9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ export function activate(context: ExtensionContext) {
let clientOptions: LanguageClientOptions = {
// Register the server for on disk and newly created YAML documents
documentSelector: [
{ language: 'yaml', scheme: 'file' },
{ language: 'yaml', scheme: 'untitled' }
{ language: 'yaml' }
],
synchronize: {
// Synchronize these setting sections with the server
Expand Down

0 comments on commit b895ee9

Please sign in to comment.