Variable: term-input-chunk-size

term-input-chunk-size is a customizable variable defined in term.el.gz.

Value

512

Documentation

Long inputs send to term processes are broken up into chunks of this size.

If your process is choking on big inputs, try lowering the value.

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
;;; Low-level process communication

(defcustom term-input-chunk-size 512
  "Long inputs send to term processes are broken up into chunks of this size.
If your process is choking on big inputs, try lowering the value."
  :group 'term
  :type 'integer)