comint(常见于 GNU Emacs 语境)指 “command interpreter(命令解释器)交互模式/框架”:Emacs 中用于与交互式命令行程序(如 shell、REPL、解释器)通信的机制与一类相关主模式/函数库(如 comint-mode),支持发送输入、接收输出、命令历史等功能。(在一般英语中并非常用词,主要是技术术语/缩写。)
/ˈkɒmɪnt/
I run my Python REPL in comint.
我在 comint 里运行 Python 的交互式解释器(REPL)。
In Emacs, many interactive buffers (like shells and language REPLs) rely on comint to manage input, output, and command history.
在 Emacs 中,许多交互式缓冲区(如 shell 和各类语言的 REPL)依赖 comint 来管理输入、输出以及命令历史。
comint 通常被理解为 command interpreter 的缩写/合成写法:*com-*(command 的开头)+ -int(interpreter 的缩写)。它作为术语主要流行于 GNU Emacs 及其文档、源码与扩展生态中。