mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 02:47:07 -05:00 
			
		
		
		
	Add youtube keywords to the bash completion script
This commit is contained in:
		@@ -4,8 +4,12 @@ __youtube-dl()
 | 
			
		||||
    COMPREPLY=()
 | 
			
		||||
    cur="${COMP_WORDS[COMP_CWORD]}"
 | 
			
		||||
    opts="{{flags}}"
 | 
			
		||||
    keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater"
 | 
			
		||||
 | 
			
		||||
    if [[ ${cur} == * ]] ; then
 | 
			
		||||
    if [[ ${cur} =~ : ]]; then
 | 
			
		||||
        COMPREPLY=( $(compgen -W "${keywords}" -- ${cur}) )
 | 
			
		||||
        return 0
 | 
			
		||||
    elif [[ ${cur} == * ]] ; then
 | 
			
		||||
        COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
 | 
			
		||||
        return 0
 | 
			
		||||
    fi
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user