diff options
author | shirt-dev <2660574+shirt-dev@users.noreply.github.com> | 2021-02-25 11:00:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 11:00:29 -0500 |
commit | b45d4e4a8e89787ea400e53de9284d257ced6838 (patch) | |
tree | a79a01a52a0b102aee28b115c00616b6ed65efa5 /devscripts/zsh-completion.py | |
parent | b965087396ddb2d40dfe5bc12391ee000945129d (diff) | |
parent | 3e39273418ad6b2f740dccbcd949e065b1039946 (diff) | |
download | hypervideo-pre-b45d4e4a8e89787ea400e53de9284d257ced6838.tar.lz hypervideo-pre-b45d4e4a8e89787ea400e53de9284d257ced6838.tar.xz hypervideo-pre-b45d4e4a8e89787ea400e53de9284d257ced6838.zip |
Fix completion paths, zsh pip completion install (#114)
Diffstat (limited to 'devscripts/zsh-completion.py')
-rwxr-xr-x | devscripts/zsh-completion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devscripts/zsh-completion.py b/devscripts/zsh-completion.py index 92eac5873..68d40014b 100755 --- a/devscripts/zsh-completion.py +++ b/devscripts/zsh-completion.py @@ -8,7 +8,7 @@ import sys sys.path.insert(0, dirn(dirn((os.path.abspath(__file__))))) import yt_dlp -ZSH_COMPLETION_FILE = "yt-dlp.zsh" +ZSH_COMPLETION_FILE = "completions/zsh/_yt-dlp" ZSH_COMPLETION_TEMPLATE = "devscripts/zsh-completion.in" |