File: gitlab.zsh

package info (click to toggle)
zplug 2.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,068 kB
  • sloc: sh: 1,504; awk: 235; makefile: 26
file content (47 lines) | stat: -rw-r--r-- 961 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
__zplug::sources::gitlab::check()
{
    __zplug::sources::github::check "$argv[@]"
}

__zplug::sources::gitlab::install()
{
    __zplug::sources::github::install "$argv[@]"
}

__zplug::sources::gitlab::update()
{
    __zplug::sources::github::update "$argv[@]"
}

__zplug::sources::gitlab::get_url()
{
    local repo="$1" url_format

    case "$ZPLUG_PROTOCOL" in
        HTTPS | https)
            # https://git::@gitlab.com/%s.git
            url_format="https://git::@gitlab.com/${repo}.git"
            ;;
        SSH | ssh)
            # git@gitlab.com:%s.git
            url_format="git@gitlab.com:${repo}.git"
            ;;
    esac

    echo "$url_format"
}

__zplug::sources::gitlab::load_plugin()
{
    __zplug::sources::github::load_plugin "$argv[@]"
}

__zplug::sources::gitlab::load_command()
{
    __zplug::sources::github::load_command "$argv[@]"
}

__zplug::sources::gitlab::load_theme()
{
    __zplug::sources::github::load_theme "$argv[@]"
}