Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
emacs-version:
- 28.1
- snapshot
Expand All @@ -26,13 +26,22 @@ jobs:
with:
version: ${{ matrix.emacs-version }}

- uses: emacs-eask/setup-eask@master
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
version: 'snapshot'
python-version: '3.10'

- name: Set workaround env var
- name: Install melpazoid
run: |
echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV
python -m pip install --upgrade pip
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
pip install ~/melpazoid

- name: Run tests
run: 'make ci'
- name: Run melpazoid
env:
LOCAL_REPO: ${{ github.workspace }}
# RECIPE is your recipe as written for MELPA:
RECIPE: (eca :fetcher github :repo "editor-code-assistant/eca-emacs")
# set this to false (or remove it) if the package isn't on MELPA:
EXIST_OK: false
run: echo $GITHUB_REF && make -C ~/melpazoid
22 changes: 0 additions & 22 deletions Eask

This file was deleted.

29 changes: 0 additions & 29 deletions Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion eca-chat.el
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Must be a valid model supported by server, check `eca-chat-select-model`."
(interactive)
(if-let ((ov (eca-chat--expandable-content-at-point)))
(eca-chat--expandable-content-toggle (overlay-get ov 'eca-chat--expandable-content-id))
(call-interactively 'markdown-cycle)))
(call-interactively #'markdown-cycle)))

(defun eca-chat--prompt-field-start-point ()
"Return the metadata overlay for the prompt field start point."
Expand Down
2 changes: 1 addition & 1 deletion eca-mcp.el
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
(insert (propertize (plist-get tool :name) 'font-lock-face 'eca-mcp-details-tool-face) " "))))
(insert "\n")
(insert (propertize "Command: " 'font-lock-face font-lock-doc-face))
(insert (concat command " " (string-join args " ")))
(insert command " " (string-join args " "))
(when (string= "failed" status)
(insert "\n")
(insert (propertize (format "Failed to start, check %s for details"
Expand Down