├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── tests ├── simulate.sh └── youtube-dl-simulate.el └── youtube-dl.el /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | simulation.db 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/youtube-dl-emacs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/youtube-dl-emacs/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/youtube-dl-emacs/HEAD/UNLICENSE -------------------------------------------------------------------------------- /tests/simulate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/youtube-dl-emacs/HEAD/tests/simulate.sh -------------------------------------------------------------------------------- /tests/youtube-dl-simulate.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/youtube-dl-emacs/HEAD/tests/youtube-dl-simulate.el -------------------------------------------------------------------------------- /youtube-dl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/youtube-dl-emacs/HEAD/youtube-dl.el --------------------------------------------------------------------------------