├── .gitignore ├── LICENSE ├── README.md └── custom_shortcuts ├── __init__.py ├── config.json ├── config.md ├── cs_functions.py └── custom_shortcuts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/README.md -------------------------------------------------------------------------------- /custom_shortcuts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/custom_shortcuts/__init__.py -------------------------------------------------------------------------------- /custom_shortcuts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/custom_shortcuts/config.json -------------------------------------------------------------------------------- /custom_shortcuts/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/custom_shortcuts/config.md -------------------------------------------------------------------------------- /custom_shortcuts/cs_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/custom_shortcuts/cs_functions.py -------------------------------------------------------------------------------- /custom_shortcuts/custom_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liresol/anki-custom-shortcuts/HEAD/custom_shortcuts/custom_shortcuts.py --------------------------------------------------------------------------------