Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
youtube-dl/youtube-dl.plugin.zsh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (19 sloc)
1014 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This allows the youtube-dl command to be installed in ZSH using antigen. | |
# Antigen is a bundle manager. It allows you to enhance the functionality of | |
# your zsh session by installing bundles and themes easily. | |
# Antigen documentation: | |
# http://antigen.sharats.me/ | |
# https://github.com/zsh-users/antigen | |
# Install youtube-dl: | |
# antigen bundle ytdl-org/youtube-dl | |
# Bundles installed by antigen are available for use immediately. | |
# Update youtube-dl (and all other antigen bundles): | |
# antigen update | |
# The antigen command will download the git repository to a folder and then | |
# execute an enabling script (this file). The complete process for loading the | |
# code is documented here: | |
# https://github.com/zsh-users/antigen#notes-on-writing-plugins | |
# This specific script just aliases youtube-dl to the python script that this | |
# library provides. This requires updating the PYTHONPATH to ensure that the | |
# full set of code can be located. | |
alias youtube-dl="PYTHONPATH=$(dirname $0) $(dirname $0)/bin/youtube-dl" |