├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.org ├── doc ├── Makefile ├── _static │ └── list-packages.png ├── conf.py ├── guide │ ├── contribute.rst │ ├── data-structures.rst │ ├── how-it-works.rst │ ├── installation.rst │ ├── problems.rst │ └── special-buffers.rst ├── index.rst ├── make.bat └── requirements.txt ├── pkg.sh ├── src ├── workgroups2-sdk.el ├── workgroups2-support.el └── workgroups2.el └── tests └── workgroups2-tests.el /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/README.org -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/list-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/_static/list-packages.png -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/guide/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/guide/contribute.rst -------------------------------------------------------------------------------- /doc/guide/data-structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/guide/data-structures.rst -------------------------------------------------------------------------------- /doc/guide/how-it-works.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/guide/how-it-works.rst -------------------------------------------------------------------------------- /doc/guide/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/guide/installation.rst -------------------------------------------------------------------------------- /doc/guide/problems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/guide/problems.rst -------------------------------------------------------------------------------- /doc/guide/special-buffers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/guide/special-buffers.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/pkg.sh -------------------------------------------------------------------------------- /src/workgroups2-sdk.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/src/workgroups2-sdk.el -------------------------------------------------------------------------------- /src/workgroups2-support.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/src/workgroups2-support.el -------------------------------------------------------------------------------- /src/workgroups2.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/src/workgroups2.el -------------------------------------------------------------------------------- /tests/workgroups2-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pashinin/workgroups2/HEAD/tests/workgroups2-tests.el --------------------------------------------------------------------------------