Skip to content

Commit 363b15a

Browse files
committed
update
1 parent e4a7e2c commit 363b15a

File tree

3 files changed

+472
-26
lines changed

3 files changed

+472
-26
lines changed

src/extension.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,34 +67,34 @@ export function activate(context: vscode.ExtensionContext) {
6767
vscode.commands.registerCommand(
6868
"gitQuickStats.showCommitsByWeekday",
6969
(filter) => {
70-
// gitStatsCommands.showCommitsByWeekday(filter);
70+
gitStatsCommands.showCommitsByWeekday(filter);
7171
}
7272
),
7373
vscode.commands.registerCommand(
7474
"gitQuickStats.showCommitsByYear",
7575
(filter) => {
76-
// gitStatsCommands.showCommitsByYear(filter);
76+
gitStatsCommands.showCommitsByYear(filter);
7777
}
7878
),
7979
vscode.commands.registerCommand(
8080
"gitQuickStats.showContributorStats",
8181
(filter) => {
82-
// gitStatsCommands.showContributorStats(filter);
82+
gitStatsCommands.showContributorStats(filter);
8383
}
8484
),
8585
vscode.commands.registerCommand(
8686
"gitQuickStats.showBranchStats",
8787
(filter) => {
88-
// gitStatsCommands.showBranchStats(filter);
88+
gitStatsCommands.showBranchStats(filter);
8989
}
9090
),
9191
vscode.commands.registerCommand("gitQuickStats.showChangelog", (filter) => {
92-
//gitStatsCommands.showChangelog(filter);
92+
gitStatsCommands.showChangelog(filter);
9393
}),
9494
vscode.commands.registerCommand(
9595
"gitQuickStats.showCodeSuggestors",
9696
(filter) => {
97-
// gitStatsCommands.showCodeSuggestors(filter);
97+
gitStatsCommands.showCodeSuggestors(filter);
9898
}
9999
),
100100
vscode.commands.registerCommand("gitQuickStats.showGitEffort", (filter) => {

0 commit comments

Comments
 (0)