branch: externals/termint
commit 8f64bfcf69a908a49295bb69e15d62c263fa569b
Author: Milan Glacier <[email protected]>
Commit: Milan Glacier <[email protected]>
doc: update commentary section.
---
termint.el | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/termint.el b/termint.el
index 4047946a03..a4d3bbce67 100644
--- a/termint.el
+++ b/termint.el
@@ -27,9 +27,18 @@
;;; Commentary:
-;; This package offers macros and functions for creating and managing
-;; REPL sessions within a terminal emulator backend (term, eat, or
-;; vterm). It facilitates the creation of custom REPL commands
+;; termint provides a flexible way to define and manage interactions
+;; with REPLs and CLI apps running inside a terminal emulator backend
+;; within Emacs. It allows you to easily configure how Emacs
+;; communicates with different REPLs, leveraging the capabilities of
+;; fully-featured terminal emulators like `term', `vterm', or `eat'.
+
+;; Instead of relying on Emacs’s built-in “dumb” terminal
+;; (`comint-mode'), termint runs REPLs in a full terminal emulator,
+;; enabling features like bracketed paste mode, proper rendering, and
+;; potentially advanced interaction for complex terminal applications.
+
+;; It facilitates the creation of custom REPL commands
;; tailored to each defined REPL, with features including starting
;; session, sending code, and hiding REPL windows. This is useful for
;; integrating terminal-based REPLs with Emacs efficiently.