Fix #2280: Antigen now links to python script
[youtube-dl] / youtube-dl.plugin.zsh
1 # This allows the youtube-dl command to be installed in ZSH using antigen.
2 # Antigen is a bundle manager. It allows you to enhance the functionality of
3 # your zsh session by installing bundles and themes easily.
4
5 # Antigen documentation:
6 # http://antigen.sharats.me/
7 # https://github.com/zsh-users/antigen
8
9 # Install youtube-dl:
10 # antigen bundle rg3/youtube-dl
11 # Bundles installed by antigen are available for use immediately.
12
13 # Update youtube-dl (and all other antigen bundles):
14 # antigen update
15
16 # The antigen command will download the git repository to a folder and then
17 # execute an enabling script (this file). The complete process for loading the
18 # code is documented here:
19 # https://github.com/zsh-users/antigen#notes-on-writing-plugins
20
21 # This specific script just aliases youtube-dl to the python script that this
22 # library provides. This requires updating the PYTHONPATH to ensure that the
23 # full set of code can be located.
24 alias youtube-dl="PYTHONPATH=$(dirname $0) $(dirname $0)/bin/youtube-dl"