ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Git Co​Author

by Tomas Barry ALL

Auto-complete a git commit co-authorship

Details

Installs

  • Total 151
  • Win 68
  • Mac 47
  • Linux 36
Feb 3 Feb 2 Feb 1 Jan 31 Jan 30 Jan 29 Jan 28 Jan 27 Jan 26 Jan 25 Jan 24 Jan 23 Jan 22 Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime-git-co-author

Co-authorship message template for Git commit messages.

In Action

Configuration Options

The configuration is set up as such:

Error: language “es6” is not supported
{
    /**
     * Default set of prompts that can trigger the auto-completion
     */
    "prompts": [
        "co",
        "coau",
        "coauthor",
        "co-author",
        "friend"
    ],
    /**
     * The default domain to use in the co-authorship. This is useful when
     * working in an organisation where everyone has a shared domain. For
     * example, if you work at Dabs Org, your domain may be dabs.org. By
     * setting the default_domain to dabs.org the provided auto-complete would
     * in that case be:
     *
     * Co-authored-by: ${1:name} <${2:email}@dabs.org>
     *
     * This means that you will only have to provide the name and email values
     */
    "default_domain": "",
    /**
     * The set of scopes for which this plugin will be available
     */
    "relevant_scopes": [
        "text.git.commit",
        "text.git-commit"
    ]
}