pj.plugin.zsh 1.11 KB
Newer Older
Toon Claes's avatar
Toon Claes committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/zsh

#
# Original idea by DefV (Jan De Poorter)
# Source: https://gist.github.com/pjaspers/368394#comment-1016
#
# Usage:
#  - Set `$PROJECT_PATHS` in your ~/.zshrc
#    e.g.: PROJECT_PATHS=(~/src ~/work)
#  - In ZSH you now can open a project directory with the command: `pj my-project`
#    the plugin will locate the `my-project` directory in one of the $PROJECT_PATHS
#    Also tab completion is supported.
#  - `pjo my-project` will open the directory in $EDITOR
# 

function pj() {
    cmd="cd"
    file=$1

    if [[ "open" == "$file" ]] then
21
22
        shift
        file=$*
Toon Claes's avatar
Toon Claes committed
23
        cmd=(${(s: :)EDITOR})
24
25
    else
        file=$*
Toon Claes's avatar
Toon Claes committed
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    fi

    for project in $PROJECT_PATHS; do
        if [[ -d $project/$file ]] then
            $cmd "$project/$file"
            unset project # Unset project var
            return
        fi
    done

    echo "No such project $1"
}

alias pjo="pj open"

function _pj () {
42
43
    # might be possible to improve this using glob, without the basename trick
    typeset -a projects
44
45
    projects=($PROJECT_PATHS/*)
    projects=$projects:t 
46
    _arguments '*:file:($projects)'
Toon Claes's avatar
Toon Claes committed
47
48
49
}

compdef _pj pj