You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Introduced a closure-based prefixState for managing the state of commit message prefixes safely.
- Added functionality to enable or disable commit message prefixes through a new prefix command.
- Updated the
content: `Generate a Git commit message based on the following summary: ${gitSummary}\n\nCommit message: `,
108
+
content: prefixState.isEnabled()
109
+
? `Generate a Git commit message based on the following summary, with an appropriate prefix (add:, fix:, feat:, refactor:, chore:, perf:, test:, style:, docs:, merge:, chore:, build:, ci:, revert:, merge:) based on the type of changes: ${gitSummary}\n\nCommit message: `
110
+
: `Generate a Git commit message based on the following summary: ${gitSummary}\n\nCommit message: `,
0 commit comments