Skip to content

Commit

Permalink
Merge pull request #224 from itowlson/virtual-fs-schemes
Browse files Browse the repository at this point in the history
Support URL schemes other than file or untitled
  • Loading branch information
JPinkney committed Aug 29, 2019
2 parents 5da9f3d + b895ee9 commit eb9f9bd
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 eb9f9bd

Please sign in to comment.