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

Bitbucket

by dtao ALL

Bitbucket plugin for Sublime Text 3

Details

Installs

  • Total 8K
  • Win 4K
  • Mac 2K
  • Linux 2K
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 1 0 0 0 0 0 1 2
Mac 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0

Readme

Source
raw.​githubusercontent.​com

SublimeBucket

Bitbucket plugin for Sublime Text 3

Installation

The easiest way to install the Bitbucket plugin is using Package Control (the package is listed as simply “Bitbucket”). If you prefer to do things the hard way, you can create a directory called “SublimeBucket” (or anything for that matter) in your Packages folder and copy the following files there:

  • sublime_bucket.py
  • Main.sublime-menu
  • Context.sublime-menu
  • Bitbucket.sublime-commands
  • Bitbucket.sublime-settings

Commands

The following commands are available under “Bitbucket” from the context menu as well as the command palette and can be assigned to keyboard shortcuts. Every command should work for both Git and Mercurial repositories.

1. Open in Bitbucket

Opens the selected line(s) in Bitbucket, preserving all highlighted ranges.

Example keyboard shortcut:

{
  "keys": ["super+b", "super+o"],
  "command": "open_in_bitbucket"
}

2. Open Bitbucket Changeset

Opens the commit where the current line was last changed in Bitbucket.

Example keyboard shortcut:

{
  "keys": ["super+b", "super+c"],
  "command": "open_bitbucket_changeset"
}

3. Find Bitbucket Pull Request

Looks up the commit where the current line was last changed and opens the pull request where that change was introduced.

Example keyboard shortcut:

{
  "keys": ["super+b", "super+p"],
  "command": "find_bitbucket_pull_request"
}

4. Open in Issue Tracker

Looks up the commit where the current line was last changed and opens the issue in your issue tracker (e.g., in Jira) with which that change is associated.

See the issue_trackers setting for more information.

Example keyboard shortcut:

{
  "keys": ["super+b", "super+i"],
  "command": "open_in_issue_tracker"
}

Settings

This plugin stores settings in the Bitbucket.sublime-settings package. The following values are configurable:

1. bitbucket_hosts

A list of hosts to identify as Bitbucket. For the vast majority of users this should just stay as the default of ['bitbucket.org']. On the off chance you have some fancy access to other Bitbucket environments (e.g., you're a developer on the Bitbucket team), you can add the domain(s) for those environment to this list.

2. issue_trackers

A list of issue trackers you use, to power the “Open in Issue Tracker” command.

Each issue tracker type has its own style of configuration. Currently Bitbucket and Jira are supported.

Bitbucket

The Bitbucket tracker identifies links to Bitbucket issues in commit messages.

{
  "type": "bitbucket",

  // Optional: a custom Bitbucket host, in case you're one of those special
  // people who also modified the `bitbucket_hosts` setting above. Defaults to
  // https://bitbucket.org for the majority of the population.
  "host": "https://bitbucket.org"
}

Jira

The Jira tracker identifies links to Jira issues for a given instance and a specified list of project keys.

{
  "type": "jira",

  // The base URL (including https://) of the Jira instance.
  "host": "https://jira.company.com",

  // An array of project keys (e.g., ABC) for identifying issue references. For
  // example, if you have `["ABC"]` in here, then if a commit message includes
  // a string like 'ABC-123' the Bitbucket plugin can take you straight to that
  // issue.
  "project_keys": []
}

Why is this on GitHub? Don't you work for Bitbucket?

GitHub is for toy projects (like this) while Bitbucket is for Serious Work™.

Just kidding. I didn't have enough Python projects on GitHub.