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
Copy file name to clipboardExpand all lines: docs/config.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,7 +187,7 @@ Type: `bool`
187
187
188
188
Default: `false`
189
189
190
-
If enabled, commitizen will show keyboard shortcuts when selecting from a list. Define a `key` for each of your choices to set the key. [Read more][shortcuts]
190
+
If enabled, Commitizen will show keyboard shortcuts when selecting from a list. Define a `key` for each of your choices to set the key. [Read more][shortcuts]
191
191
192
192
### `major_version_zero`
193
193
@@ -341,14 +341,14 @@ commitizen:
341
341
## Version providers
342
342
343
343
Commitizen can read and write version from different sources.
344
-
By default, it uses the `commitizen` one which is using the `version` field from the commitizen settings.
344
+
By default, it uses the `commitizen` one which is using the `version` field from the Commitizen settings.
345
345
But you can use any `commitizen.provider` entrypoint as value for `version_provider`.
346
346
347
347
Commitizen provides some version providers for some well known formats:
Copy file name to clipboardExpand all lines: docs/customization.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
Customizing commitizen is not hard at all.
1
+
Customizing Commitizen is not hard at all.
2
2
We have two different ways to do so.
3
3
4
4
## 1. Customize in configuration file
5
5
6
6
The basic steps are:
7
7
8
8
1. Define your custom committing or bumping rules in the configuration file.
9
-
2. Declare `name = "cz_customize"` in your configuration file, or add `-n cz_customize` when running commitizen.
9
+
2. Declare `name = "cz_customize"` in your configuration file, or add `-n cz_customize` when running Commitizen.
10
10
11
11
Example:
12
12
@@ -184,8 +184,8 @@ commitizen:
184
184
185
185
#### Shortcut keys
186
186
187
-
When the [`use_shortcuts`](config.md#settings) config option is enabled, commitizen can show and use keyboard shortcuts to select items from lists directly.
188
-
For example, when using the `cz_conventional_commits` commitizen template, shortcut keys are shown when selecting the commit type. Unless otherwise defined, keyboard shortcuts will be numbered automatically.
187
+
When the [`use_shortcuts`](config.md#settings) config option is enabled, Commitizen can show and use keyboard shortcuts to select items from lists directly.
188
+
For example, when using the `cz_conventional_commits` Commitizen template, shortcut keys are shown when selecting the commit type. Unless otherwise defined, keyboard shortcuts will be numbered automatically.
189
189
To specify keyboard shortcuts for your custom choices, provide the shortcut using the `key` parameter in dictionary form for each choice you would like to customize.
190
190
191
191
## 2. Customize through customizing a class
@@ -304,7 +304,7 @@ class StrangeCommitizen(BaseCommitizen):
0 commit comments