├── .github └── workflows │ └── test.yml ├── .gitignore ├── Eldev ├── LICENSE.md ├── README.org ├── images ├── duplicatedCodeMold.gif ├── invertBlogThemeWithMolds.gif └── listToPicture.gif ├── moldable-emacs.el ├── molds ├── contrib.el └── core.el ├── resources ├── my.jpg ├── playgroundMold.jpg ├── pythonFile.jpg └── pythonFunctionComplexity.jpg ├── test.sh ├── tests └── moldable-emacs-test.el └── tutorials ├── HowToWriteAMold.org └── ListCurrentEmacsBuffersAndSizesInBarChart.org /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/.gitignore -------------------------------------------------------------------------------- /Eldev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/Eldev -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/README.org -------------------------------------------------------------------------------- /images/duplicatedCodeMold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/images/duplicatedCodeMold.gif -------------------------------------------------------------------------------- /images/invertBlogThemeWithMolds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/images/invertBlogThemeWithMolds.gif -------------------------------------------------------------------------------- /images/listToPicture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/images/listToPicture.gif -------------------------------------------------------------------------------- /moldable-emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/moldable-emacs.el -------------------------------------------------------------------------------- /molds/contrib.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/molds/contrib.el -------------------------------------------------------------------------------- /molds/core.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/molds/core.el -------------------------------------------------------------------------------- /resources/my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/resources/my.jpg -------------------------------------------------------------------------------- /resources/playgroundMold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/resources/playgroundMold.jpg -------------------------------------------------------------------------------- /resources/pythonFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/resources/pythonFile.jpg -------------------------------------------------------------------------------- /resources/pythonFunctionComplexity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/resources/pythonFunctionComplexity.jpg -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./eldev -p -dtT test 4 | -------------------------------------------------------------------------------- /tests/moldable-emacs-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/tests/moldable-emacs-test.el -------------------------------------------------------------------------------- /tutorials/HowToWriteAMold.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/tutorials/HowToWriteAMold.org -------------------------------------------------------------------------------- /tutorials/ListCurrentEmacsBuffersAndSizesInBarChart.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ag91/moldable-emacs/HEAD/tutorials/ListCurrentEmacsBuffersAndSizesInBarChart.org --------------------------------------------------------------------------------