A terminal-based git commit message editor with opinionated formatting
Project description
Commit Editor
An opinionated, terminal-based text editor for git commit messages, built with Textual.
- Title length warning: Characters beyond position 50 on the first line are highlighted in red
- Auto-wrap body text: Lines in the commit body (line 3+) are automatically wrapped at 72 characters (except for long strings that can't be wrapped, such as URLs)
- White space: Trailing white space is automatically stripped when a file is saved; an empty newline is inserted at the end of the file if not present.
- Signed-off-by toggle: Quickly add or remove a
Signed-off-bytrailer with a keyboard shortcut - Issue ID validation: Optionally enforce that commit titles start with an issue ID (e.g.
PROJ-123:) - Status bar: Shows current cursor position (line/column) and title length with warnings
Installation
# Using uv
uv tool install commit-editor
# Using pip
pip install commit-editor
Requirements
- Python 3.11 or later
- Git (for Signed-off-by functionality)
Usage
Configure commit-editor as your default git commit message editor:
git config --global core.editor commit-editor
When you run git commit, the editor will open automatically.
commit-editor can also be used as a standalone tool with:
commit-editor path/to/file.txt
Keyboard Shortcuts
| Shortcut | Action |
|---|---|
Ctrl+S |
Save the file |
Ctrl+Q |
Quit |
Ctrl+O |
Toggle Signed-off-by trailer |
Additional key bindings are noted in the Textual
TextArea documentation.
Configuration
Issue ID Validation
You can require commit titles to start with an issue ID by setting a regex pattern:
# Per-repository
git config commit-editor.issue-pattern 'PROJ-\d+'
# Global
git config --global commit-editor.issue-pattern 'PROJ-\d+'
The pattern is matched against the start of the title and must be followed by a colon (:). For example, with
the pattern PROJ-\d+:
- valid:
PROJ-123: fix login bug - invalid:
fix login bug
Commit Message Format
This editor enforces the widely-accepted git commit message conventions:
- Title (line 1): Should be 50 characters or less; characters beyond 50 are highlighted in red as a warning.
- Blank line (line 2): Separates the title from the body.
- Body (line 3+): Should wrap at 72 characters; long lines are wrapped automatically as you type.
Future Improvements
- Color theme support
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file commit_editor-0.5.0.tar.gz.
File metadata
- Download URL: commit_editor-0.5.0.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"42","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c6a0f72840c6672b62e05ad03d8a5082c36b5844287f26e50ddf45bb7771e8
|
|
| MD5 |
26b466c47ee8d6cfbb600d0d9c367ae5
|
|
| BLAKE2b-256 |
99e8db4976ad357a4118b991b36974b2ccec09472850a2f26303a09149e252e8
|
File details
Details for the file commit_editor-0.5.0-py3-none-any.whl.
File metadata
- Download URL: commit_editor-0.5.0-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"42","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08eda0d20ec262b8affea0583829472bf64da5f80e2c7d2b7d27bb1b144d16f6
|
|
| MD5 |
d036a025d7265c98992c3fea60ea1e32
|
|
| BLAKE2b-256 |
c0d975b8f7d1e5fd9a6d9769b54fac502ff33d23562c20f8b2b6fd9442ef775b
|