branch: externals/ellama commit beeb47214fd5e3f3bf0d3cf63e67dda66892344e Author: Sergey Kostyaev <sskosty...@gmail.com> Commit: Sergey Kostyaev <sskosty...@gmail.com>
Add session ID display in header line to readme Added functionality to show ellama session ID in the header line across all buffers. Updated both simple and sophisticated configuration examples accordingly. --- README.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 8286e10d99..ba82ee2bec 100644 --- a/README.org +++ b/README.org @@ -40,7 +40,9 @@ You can customize ellama configuration like this: :init (setopt ellama-auto-scroll t) :config ;; show ellama context in header line in all buffers - (ellama-context-header-line-global-mode +1)) + (ellama-context-header-line-global-mode +1) + ;; show ellama session id in header line in all buffers + (ellama-session-header-line-global-mode +1)) #+END_SRC More sofisticated configuration example: @@ -114,6 +116,8 @@ More sofisticated configuration example: :config ;; show ellama context in header line in all buffers (ellama-context-header-line-global-mode +1) + ;; show ellama session id in header line in all buffers + (ellama-session-header-line-global-mode +1) ;; handle scrolling events (advice-add 'pixel-scroll-precision :before #'ellama-disable-scroll) (advice-add 'end-of-buffer :after #'ellama-enable-scroll))