Variable: tramp-inline-compress-start-size

tramp-inline-compress-start-size is a customizable variable defined in tramp-sh.el.gz.

Value

4096

Documentation

The minimum size of compressing where inline transfer.

When inline transfer, compress transferred data of file whose size is this value or above (up to tramp-copy-size-limit for out-of-band methods). If it is nil, no compression at all will be applied.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-sh.el.gz
(defcustom tramp-inline-compress-start-size 4096
  "The minimum size of compressing where inline transfer.
When inline transfer, compress transferred data of file whose
size is this value or above (up to `tramp-copy-size-limit' for
out-of-band methods).
If it is nil, no compression at all will be applied."
  :group 'tramp
  :type '(choice (const nil) integer)
  :link '(info-link :tag "Tramp manual" "(tramp) Inline methods"))