├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Eask ├── LICENSE ├── README.md ├── demo.gif ├── eca-api.el ├── eca-chat.el ├── eca-completion.el ├── eca-diff.el ├── eca-editor.el ├── eca-mcp.el ├── eca-process.el ├── eca-rewrite.el ├── eca-util.el ├── eca.el └── test └── eca-diff-test.el /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | dist 4 | .eask 5 | *.elc 6 | *~ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/Eask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/demo.gif -------------------------------------------------------------------------------- /eca-api.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-api.el -------------------------------------------------------------------------------- /eca-chat.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-chat.el -------------------------------------------------------------------------------- /eca-completion.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-completion.el -------------------------------------------------------------------------------- /eca-diff.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-diff.el -------------------------------------------------------------------------------- /eca-editor.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-editor.el -------------------------------------------------------------------------------- /eca-mcp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-mcp.el -------------------------------------------------------------------------------- /eca-process.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-process.el -------------------------------------------------------------------------------- /eca-rewrite.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-rewrite.el -------------------------------------------------------------------------------- /eca-util.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca-util.el -------------------------------------------------------------------------------- /eca.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/eca.el -------------------------------------------------------------------------------- /test/eca-diff-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-code-assistant/eca-emacs/HEAD/test/eca-diff-test.el --------------------------------------------------------------------------------