Path: blob/main/extensions/git-base/syntaxes/git-rebase.tmLanguage.json
3314 views
{1"information_for_contributors": [2"This file has been converted from https://github.com/textmate/git.tmbundle/blob/master/Syntaxes/Git%20Rebase%20Message.tmLanguage",3"If you want to provide a fix or improvement, please create a pull request against the original repository.",4"Once accepted there, we are happy to receive an update request."5],6"version": "https://github.com/textmate/git.tmbundle/commit/5870cf3f8abad3a6637bdf69250b5d2ded427dc4",7"name": "Git Rebase Message",8"scopeName": "text.git-rebase",9"patterns": [10{11"captures": {12"1": {13"name": "punctuation.definition.comment.git-rebase"14}15},16"match": "^\\s*(#).*$\\n?",17"name": "comment.line.number-sign.git-rebase"18},19{20"captures": {21"1": {22"name": "support.function.git-rebase"23},24"2": {25"name": "constant.sha.git-rebase"26},27"3": {28"name": "meta.commit-message.git-rebase"29}30},31"match": "^\\s*(pick|p|reword|r|edit|e|squash|s|fixup|f|drop|d)\\s+([0-9a-f]+)\\s+(.*)$",32"name": "meta.commit-command.git-rebase"33},34{35"captures": {36"1": {37"name": "support.function.git-rebase"38},39"2": {40"patterns": [41{42"include": "source.shell"43}44]45}46},47"match": "^\\s*(exec|x)\\s+(.*)$",48"name": "meta.commit-command.git-rebase"49},50{51"captures": {52"1": {53"name": "support.function.git-rebase"54}55},56"match": "^\\s*(break|b)\\s*$",57"name": "meta.commit-command.git-rebase"58}59]60}6162