Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
#8 Fix regression disallowing extension to work on saved files
Browse files Browse the repository at this point in the history
  • Loading branch information
Venthe committed Aug 12, 2022
1 parent 5fc28dd commit f8ed665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function activate(context: ExtensionContext) {
console.debug("Registering Fauxpilot provider", new Date());
context.subscriptions.push(
languages.registerInlineCompletionItemProvider(
{ pattern: "**", scheme: 'untitled' }, new FauxpilotCompletionProvider()
{ pattern: "**" }, new FauxpilotCompletionProvider()
),
commands.registerCommand(turnOnFauxpilot.command, turnOnFauxpilot.callback),
commands.registerCommand(turnOffFauxpilot.command, turnOffFauxpilot.callback)
Expand Down

0 comments on commit f8ed665

Please sign in to comment.