mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
Support git commit message syntax highlighting (fixes #3876)
This commit is contained in:
34
extensions/git/package.json
Normal file
34
extensions/git/package.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "gitmode",
|
||||
"version": "0.1.0",
|
||||
"publisher": "vscode",
|
||||
"engines": { "vscode": "*" },
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "git-commit",
|
||||
"aliases": ["Git Commit Message", "git-commit"],
|
||||
"filenames": ["COMMIT_EDITMSG", "MERGE_MSG"],
|
||||
"configuration": "./git-commit.configuration.json"
|
||||
},
|
||||
{
|
||||
"id": "git-rebase",
|
||||
"aliases": ["Git Rebase Message", "git-rebase"],
|
||||
"filenames": ["git-rebase-todo"],
|
||||
"configuration": "./git-rebase.configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "git-commit",
|
||||
"scopeName": "text.git-commit",
|
||||
"path": "./syntaxes/git-commit.tmLanguage"
|
||||
},
|
||||
{
|
||||
"language": "git-rebase",
|
||||
"scopeName": "text.git-rebase",
|
||||
"path": "./syntaxes/git-rebase.tmLanguage"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user