Variable: artist-vaporize-fuzziness
artist-vaporize-fuzziness is a customizable variable defined in
artist.el.gz.
Value
1
Documentation
How to vaporize lines that are cut off.
Accept this many characters cutting off a line and still treat
it as one line.
Example:
If artist-vaporize-fuzziness is 2, then those will be recognized as
lines from A to B (provided you start vaporizing them at the "*"):
/
A----*------/-----------B
\/
A----*----/\------------B
/ \
but this one won't, since it is cut off by more than 2 characters:
\/ /
A----*----/\/----------B
/ /\
(in fact, only the left part [between the A and the leftmost "/"
crossing the line] will be vaporized).
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defcustom artist-vaporize-fuzziness 1
"How to vaporize lines that are cut off.
Accept this many characters cutting off a line and still treat
it as one line.
Example:
If `artist-vaporize-fuzziness' is 2, then those will be recognized as
lines from A to B (provided you start vaporizing them at the \"*\"):
/
A----*------/-----------B
\\/
A----*----/\\------------B
/ \\
but this one won't, since it is cut off by more than 2 characters:
\\/ /
A----*----/\\/----------B
/ /\\
(in fact, only the left part [between the A and the leftmost \"/\"
crossing the line] will be vaporized)."
:group 'artist
:type 'integer)