mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-03-08 15:50:40 -07:00
8 lines
271 B
EmacsLisp
8 lines
271 B
EmacsLisp
;;; tools/llm/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +llm/open-in-same-window ()
|
|
"Open gptel buffer in the selected buffer."
|
|
(interactive)
|
|
(let ((gptel-display-buffer-action '(display-buffer-same-window)))
|
|
(call-interactively #'gptel)))
|