GitlabIntegrate
Integrates various Gitlab features (mostly issue management) into Sublime 2/3.
Details
Installs
- Total 11K
- Win 6K
- Mac 3K
- Linux 3K
Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 3 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 2 | 0 | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 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 |
Readme
- Source
- raw.githubusercontent.com
Sublime Gitlab Integrate
This is a Sublime Text 2/3 Plugin that integrates various Gitlab features (primarily dealing with issue management, currently) into the editor.
Installation
There are 3 ways to install:
With Package Control installed:
- (Recommended) Simply search for “Gitlab Integrate” in the “Install Package” menu and select it
Without Package Control:
- Clone this repository into
[your Sumblime installation directory]/Packages/
- Clone/download this repo wherever you'd like, then copy the files in it to
[your Sublime installation directory]/Packages/GitlabIntegrate
- Clone this repository into
Once installed, the plugin can be activated with cmd+shift+x
(Mac) or ctrl+shift+x
(Win/Linux).
Configuration
Before using GitlabIntegrate, you should configure the User Settings file. If you do not, the introduction document will appear and prompt you to do so. User settings can be found 3 ways (you may need to create the file if it doesn't exist):
- Via the menu at
Preferences -> Package Settings -> Gitlab Integrate -> Settings - User
- Via the menu at
Tools -> Gitlab Integrate -> Access User Settings
- Via file browser at
[sublime installation directory]/Packages/User/GitlabIntegrate.sublime-settings
Then, copy and paste the following text into the file (replacing any text already there). Be sure to edit the project_host and user_token fields:
{
//The project host
"project_host":"",
//Your user token for GitLab, found in [host]/profile/account
"user_token":"",
//Displays the new installation window
"display_intro":false,
//The name of the tab when using Edit Issue In Tab (note: if you open another tab with this name, weird things might happen)
"edit_issue_in_tab_name": "[GLI]: Editing Issue",
//Suppresses output of closed issues for the Select Issue command
"hide_closed_issues":false,
//Appears before all GitlabIntegrate outputs in the console and status bar
"output_prefix":"[GLI]:",
/*
The default project ID.
This can be found by running GitlabIntegrate's "Get Project IDs" command after configuring
your host and user_token. All the projects you have access to should be listed with their IDs.
*/
"project_id": 0
//set to false if you want to use HTTPS with a self-signed certificate
"verify_ssl":true
}
Usage
GitlabIntegrate functions can be accessed via the menu (Tools -> GitlabIntegrate
), with a keyboard shortcut (Ctrl+Shift+X
on Windows/Linux, Cmd+Shift+X
on Mac), or via the Command Palette (default: Cmd+Shift+P
on Mac, Ctrl+Shift+P
on Windows/Linux). All GLI commands in the command palette begin with “GLI:”.
Edit Issue In Tab: This mode opens the selected issue for editing in a separate view. To save your changes, simply close the tab.
Command Arguments: When entering a command through the status/input bar, arguments must be comma-separated. All potential arguments are listed to the left of the input box within parentheses. Arguments in square brackets ([]) are optional.
Optional and Keyword Arguments: Optional arguments may be specified as keyword arguments by prepending the argument value with its name and an unescaped equals sign (E.g., to create a new issue called “test_issue” and assign it to the user “robert” without specifying a description, you would type test_issue, assign_to=username
into the Create Issue
input box). If no keywords are specified, the arguments are processed left to right.
With the exception of labels, every argument is represented by its keyword in the prompt.
Special Notes on Arguments:
Labels:
- The keyword for labels is
labels
- If specifying more than one label, you must quote the whole list (e.g., for the
Add Label(s) to Issue
command for the issue #10 you would type:10, "first_label, second_label"
or10, labels="first_label, second_label"
) - If you only specify one label, it does not matter whether you quote it or not.
- Specifying labels in the
Edit Issue
command will replace all current labels. Explicitly specifying no labels (e.g.labels=,
orlabels="",
) will remove all labels from the issue.
- The keyword for labels is
Assign_to: Users may be idenified by username or user_id (if you happen to know their id). GLI will automatically detect which method you've used.
Escaped Characters: commas (
,
), equals signs (=
), and double quotes ("
) in titles/descriptions must be escaped with a backslash (\
). Only double quotes must be escaped in theEdit Issue In View
mode.
Modifying
Before modifying GitlabIntegrate, users are encouraged to read notes_for_modifying.md.