This extension contributes the following settings:
commit-message-editor.confirmAmend: Show confirm dialog before amend the commit message
commit-message-editor.staticTemplate: Template for the text view
commit-message-editor.dynamicTemplate: Template for the form view
commit-message-editor.tokens: Editable inputs in the form view
commit-message-editor.view.defaultView: Default view of the editor (textarea or form)
commit-message-editor.view.fullWidth: The editor fills the whole available space
commit-message-editor.view.showRecentCommits: Show recent commits in the main view
commit-message-editor.view.saveAndClose: Close commit message editor tab after saving
commit-message-editor.view.visibleViews: Which tab(s) should be visible: text, form or both
commit-message-editor.view.visibleLines: Visible lines in the text view
commit-message-editor.view.useMonospaceEditor: Use monospace font in the text view
commit-message-editor.view.tabSize: Tab size in the monospace editor
commit-message-editor.view.useTabs: Use tabs for indentation in the monospace editor
commit-message-editor.view.rulers: Render vertical rulers after a certain number of monospace characters in the monospace editor. Use multiple values for multiple rulers. No rulers are drawn if array is empty.
Customizing the commit message form
The dynamic template contains template variables (tokens), which are between curly braces. Every token is displayed as a form widget in the form view. The easiest way to customizing tokens is to edit the default configuration. Find the tokens option under the Commit Message Editor settings and copy the setting to your user configuration.
Available settings
Name
Type
Description
Valid for
label
string
The label of the form item.
all
name
string
The token name in the template.
all
type
enum
The type of the token. Valid values are: text: displayed as a text input boolean: displayed as a checkbox enum: displayed as a dropdown selector
all
description
string
A longer text under the form item
all
prefix
string
Text before the value. It will only be applied if the value is not empty
all
suffix
string
Text after the value. It will only be applied if the value is not empty
all
multiline
boolean
Multiline text input
text
lines
number
Textarea initial height in lines
text
maxLines
number
Textarea maximum height in lines
text
multiple
boolean
Multiple options
enum
separator
string
Separator character when multiple options were selected