Priority: MEDIUM
Problem
The extension.compressGitStage command is listed in contributions but missing from activationEvents.
Current configuration in package.json:
"activationEvents": [
"onCommand:extension.compressFile",
"onCommand:extension.compressFolder",
"onCommand:extension.getCompressionCount"
]
Solution
Option 1: Add the missing command
"activationEvents": [
"onCommand:extension.compressFile",
"onCommand:extension.compressFolder",
"onCommand:extension.getCompressionCount",
"onCommand:extension.compressGitStage"
]
Option 2: Use modern activation (VSCode 1.74+)
Remove the field entirely and let VSCode automatically activate on command execution:
// Remove activationEvents entirely
Option 3: Use onStartupFinished for lazy loading
"activationEvents": [
"onStartupFinished"
]
Reference
VSCode Activation Events
Priority
MEDIUM - Bug that prevents proper command activation
Priority: MEDIUM
Problem
The
extension.compressGitStagecommand is listed in contributions but missing from activationEvents.Current configuration in
package.json:Solution
Option 1: Add the missing command
Option 2: Use modern activation (VSCode 1.74+)
Remove the field entirely and let VSCode automatically activate on command execution:
// Remove activationEvents entirelyOption 3: Use onStartupFinished for lazy loading
Reference
VSCode Activation Events
Priority
MEDIUM - Bug that prevents proper command activation