branch: externals/ellama commit 646513ae5b0f244188be30e2fb4f0960a90101d2 Author: Sergey Kostyaev <sskosty...@gmail.com> Commit: Sergey Kostyaev <sskosty...@gmail.com>
Update context management Replaced `ellama-manage-context` with `ellama-transient-context-menu` for header and mode line mouse clicks. This change updates the behavior to use a transient menu for managing contexts. --- ellama.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ellama.el b/ellama.el index 88c15f6e93..1424c9da60 100644 --- a/ellama.el +++ b/ellama.el @@ -1119,8 +1119,8 @@ If EPHEMERAL non nil new session will not be associated with any file." 'mouse-face 'header-line-format 'face 'ellama-context-line-face 'keymap (let ((m (make-sparse-keymap))) - (define-key m [header-line mouse-1] #'ellama-manage-context) - (define-key m [mode-line mouse-1] #'ellama-manage-context) + (define-key m [header-line mouse-1] #'ellama-transient-context-menu) + (define-key m [mode-line mouse-1] #'ellama-transient-context-menu) m))) ;;;###autoload