├── .dir-locals.el ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── sesman-browser.el ├── sesman-test.el ├── sesman.el └── targets ├── checkdoc.el └── compile.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/README.md -------------------------------------------------------------------------------- /sesman-browser.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/sesman-browser.el -------------------------------------------------------------------------------- /sesman-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/sesman-test.el -------------------------------------------------------------------------------- /sesman.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/sesman.el -------------------------------------------------------------------------------- /targets/checkdoc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspinu/sesman/HEAD/targets/checkdoc.el -------------------------------------------------------------------------------- /targets/compile.el: -------------------------------------------------------------------------------- 1 | 2 | (byte-compile-file "sesman.el") 3 | --------------------------------------------------------------------------------