@@ -67,34 +67,34 @@ export function activate(context: vscode.ExtensionContext) {
67
67
vscode . commands . registerCommand (
68
68
"gitQuickStats.showCommitsByWeekday" ,
69
69
( filter ) => {
70
- // gitStatsCommands.showCommitsByWeekday(filter);
70
+ gitStatsCommands . showCommitsByWeekday ( filter ) ;
71
71
}
72
72
) ,
73
73
vscode . commands . registerCommand (
74
74
"gitQuickStats.showCommitsByYear" ,
75
75
( filter ) => {
76
- // gitStatsCommands.showCommitsByYear(filter);
76
+ gitStatsCommands . showCommitsByYear ( filter ) ;
77
77
}
78
78
) ,
79
79
vscode . commands . registerCommand (
80
80
"gitQuickStats.showContributorStats" ,
81
81
( filter ) => {
82
- // gitStatsCommands.showContributorStats(filter);
82
+ gitStatsCommands . showContributorStats ( filter ) ;
83
83
}
84
84
) ,
85
85
vscode . commands . registerCommand (
86
86
"gitQuickStats.showBranchStats" ,
87
87
( filter ) => {
88
- // gitStatsCommands.showBranchStats(filter);
88
+ gitStatsCommands . showBranchStats ( filter ) ;
89
89
}
90
90
) ,
91
91
vscode . commands . registerCommand ( "gitQuickStats.showChangelog" , ( filter ) => {
92
- // gitStatsCommands.showChangelog(filter);
92
+ gitStatsCommands . showChangelog ( filter ) ;
93
93
} ) ,
94
94
vscode . commands . registerCommand (
95
95
"gitQuickStats.showCodeSuggestors" ,
96
96
( filter ) => {
97
- // gitStatsCommands.showCodeSuggestors(filter);
97
+ gitStatsCommands . showCodeSuggestors ( filter ) ;
98
98
}
99
99
) ,
100
100
vscode . commands . registerCommand ( "gitQuickStats.showGitEffort" , ( filter ) => {
0 commit comments