├── .dir-locals.el ├── .elpaignore ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── codespell.yml │ └── test.yml ├── .gitignore ├── COPYING ├── Makefile ├── README.org ├── doc ├── AUTHORS.org └── screenshot.png ├── mentor-data.el ├── mentor-files.el ├── mentor-rpc.el ├── mentor-trackers.el ├── mentor.el ├── test-rtorrent.py └── test ├── mentor-rpc-tests.el └── mentor-tests.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.elpaignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/.elpaignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/StefanKangas"] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/README.org -------------------------------------------------------------------------------- /doc/AUTHORS.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/doc/AUTHORS.org -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /mentor-data.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/mentor-data.el -------------------------------------------------------------------------------- /mentor-files.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/mentor-files.el -------------------------------------------------------------------------------- /mentor-rpc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/mentor-rpc.el -------------------------------------------------------------------------------- /mentor-trackers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/mentor-trackers.el -------------------------------------------------------------------------------- /mentor.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/mentor.el -------------------------------------------------------------------------------- /test-rtorrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/test-rtorrent.py -------------------------------------------------------------------------------- /test/mentor-rpc-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/test/mentor-rpc-tests.el -------------------------------------------------------------------------------- /test/mentor-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skangas/mentor/HEAD/test/mentor-tests.el --------------------------------------------------------------------------------