├── .gitignore ├── GPL ├── Makefile ├── README ├── connection.el ├── deb ├── README.debian ├── changelog ├── compat ├── control ├── copyright ├── dictionary.install ├── install.debian ├── postinst ├── prerm ├── remove.debian └── rules ├── dictionary-init.el ├── dictionary.el ├── install-package.el ├── link.el └── lpath.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/.gitignore -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/GPL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/README -------------------------------------------------------------------------------- /connection.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/connection.el -------------------------------------------------------------------------------- /deb/README.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/README.debian -------------------------------------------------------------------------------- /deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/changelog -------------------------------------------------------------------------------- /deb/compat: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/control -------------------------------------------------------------------------------- /deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/copyright -------------------------------------------------------------------------------- /deb/dictionary.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/dictionary.install -------------------------------------------------------------------------------- /deb/install.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/install.debian -------------------------------------------------------------------------------- /deb/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/postinst -------------------------------------------------------------------------------- /deb/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/prerm -------------------------------------------------------------------------------- /deb/remove.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/remove.debian -------------------------------------------------------------------------------- /deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/deb/rules -------------------------------------------------------------------------------- /dictionary-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/dictionary-init.el -------------------------------------------------------------------------------- /dictionary.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/dictionary.el -------------------------------------------------------------------------------- /install-package.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/install-package.el -------------------------------------------------------------------------------- /link.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/link.el -------------------------------------------------------------------------------- /lpath.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myrkr/dictionary-el/HEAD/lpath.el --------------------------------------------------------------------------------