├── .dir-locals.el ├── .github └── workflows │ └── compile.yml ├── .gitignore ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.org └── closql.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*.elc 2 | /*-autoloads.el 3 | /.config.mk 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/README.org -------------------------------------------------------------------------------- /closql.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/closql/HEAD/closql.el --------------------------------------------------------------------------------