Skip to content

Commit

Permalink
fix: enable command now executes correct function
Browse files Browse the repository at this point in the history
  • Loading branch information
muuvmuuv committed Jun 19, 2021
1 parent 666a37a commit ed62ed9
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 @@ -43,7 +43,7 @@ export function activate(context: ExtensionContext): void {
commands.registerCommand('sundial.switchToDayTheme', () => toggleTheme(TimeNames.DAY))
commands.registerCommand('sundial.toggleDayNightTheme', () => toggleTheme())

commands.registerCommand('sundial.enableExtension', () => sundial.disableExtension())
commands.registerCommand('sundial.enableExtension', () => sundial.enableExtension())
commands.registerCommand('sundial.disableExtension', () => sundial.disableExtension())
commands.registerCommand('sundial.pauseUntilNextCircle', () => sundial.pauseUntilNextCircle())
}
Expand Down

0 comments on commit ed62ed9

Please sign in to comment.