├── .elpaignore ├── .github └── workflows │ └── ubuntu-latest.yml ├── .gitignore ├── COPYING ├── CREDITS ├── DESIGN ├── NEWS ├── check.sh ├── genhtml.sh ├── paredit.el └── test.el /.elpaignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/.elpaignore -------------------------------------------------------------------------------- /.github/workflows/ubuntu-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/.github/workflows/ubuntu-latest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/CREDITS -------------------------------------------------------------------------------- /DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/DESIGN -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/NEWS -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/check.sh -------------------------------------------------------------------------------- /genhtml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/genhtml.sh -------------------------------------------------------------------------------- /paredit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/paredit.el -------------------------------------------------------------------------------- /test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsmirror/paredit/HEAD/test.el --------------------------------------------------------------------------------