Mercurial
Full-featured Mercurial (hg) support for Sublime Text 3
Details
Installs
- Total 12K
- Win 5K
- Mac 4K
- Linux 4K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 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 | 0 | 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
Mercurial (Sublime Text Package)
Use Mercurial from Sublime Text 3.
Requirements
- Mercurial command server (Mercurial 1.9 or above)
Installation
- Download
- Install to Installed Packages
Configuration
These options can be set in Preferences | Settings - User.
packages.mercurial.hg_exe
By default, the executable name for Mercurial is hg
. If you need to
use a different one, such as hg.bat
, change this option.
Example:
{
"packages.mercurial.hg_exe": "hg.bat"
}
packages.mercurial.terminal
Determines the terminal emulator to be used in Linux. Some commands, such as serve, need this information to work.
packages.mercurial.extensions
A list of Mercurial extension names. Commands belonging to these extensions will show up in the Mercurial quick panel along with built-in Mercurial commands.
How to Use
Mercurial can be used in two ways:
- Through a menu (
show_mercurial_menu
command). - Through a command-line interface (
show_mercurial_cli
command).
Regardless of the method used, Mercurial ultimately talks to the Mercurial command server. The command-line interface is the more flexible option, but some operations might be quicker through the menu.
By default, you have to follow these steps to use Mercurial:
- Open the Command Palette (Ctrl+Shift+P) and look for
Mercurial
. - Select option
- Select Mercurial command (or type in command line)
It is however recommended to assign show_mercurial_cli
and
show_mercurial_menu
their own key bindings.
For example:
{ "keys": ["ctrl+k", "ctrl+k"], "command": "show_mercurial_menu" },
{ "keys": ["ctrl+shift+k"], "command": "show_mercurial_cli" },
Restarting the Current Server
The Mercurial command server will not detect changes to the repository made from the outside (perhaps from a command line) while it is running. To restart the current server so that external changes are picked up, select Kill Current Server from the command palette.
Tab Completion
While in the command-line, top level commands will be autocompleted when you press Tab.
Quick Actions
In some situations, you can perform quick actions.
In Log Reports
To diff two revisions, select two revision numbers and press Ctrl+Enter.
To update to a revision number, select a revision number and press Ctrl+Shift+Enter.
Donations
You can tip me through Gittip (guillermooo) or Pledgie (see top).