├── .dir-locals.el ├── .gitignore ├── .travis.yml ├── README.md ├── auto-dictionary.el └── tests.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/auto-dictionary-mode/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/auto-dictionary-mode/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/auto-dictionary-mode/HEAD/README.md -------------------------------------------------------------------------------- /auto-dictionary.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/auto-dictionary-mode/HEAD/auto-dictionary.el -------------------------------------------------------------------------------- /tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/auto-dictionary-mode/HEAD/tests.el --------------------------------------------------------------------------------