├── .dir-locals.el ├── .elpaignore ├── .github ├── ISSUE_TEMPLATES │ ├── bug_report.md │ └── config.yml └── workflows │ ├── compile.yml │ ├── manual.yml │ ├── stats.yml │ └── test.yml ├── .gitignore ├── .mailmap ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.org ├── default.mk ├── docs ├── .orgconfig ├── Makefile ├── gpl.texi ├── htmlxref.cnf ├── transient.org └── transient.texi ├── lisp ├── Makefile └── transient.el └── test ├── Makefile └── transient-tests.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.elpaignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.elpaignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATES/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.github/ISSUE_TEMPLATES/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATES/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.github/ISSUE_TEMPLATES/config.yml -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.github/workflows/stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.github/workflows/stats.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | Naoya Yamashita 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/README.org -------------------------------------------------------------------------------- /default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/default.mk -------------------------------------------------------------------------------- /docs/.orgconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/docs/.orgconfig -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/gpl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/docs/gpl.texi -------------------------------------------------------------------------------- /docs/htmlxref.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/docs/htmlxref.cnf -------------------------------------------------------------------------------- /docs/transient.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/docs/transient.org -------------------------------------------------------------------------------- /docs/transient.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/docs/transient.texi -------------------------------------------------------------------------------- /lisp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/lisp/Makefile -------------------------------------------------------------------------------- /lisp/transient.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/lisp/transient.el -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/transient-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/transient/HEAD/test/transient-tests.el --------------------------------------------------------------------------------