4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
|
/*
** SETTING: clearsign boolean default=off
** When enabled, fossil will attempt to sign all commits
** with gpg or ssh. When disabled, commits will be unsigned.
*/
/*
** SETTING: comment-format width=16 default=1
** Set the default options for printing timeline comments to the console.
**
** The global --comfmtflags command-line option (or alias --comment-format)
** overrides this setting.
**
** Possible values are:
** 1 Activate the legacy comment printing format (default).
**
** Or a bitwise combination of the following flags:
** 0 Activate the newer (non-legacy) comment printing format.
** 2 Trim leading and trailing CR and LF characters.
** 4 Trim leading and trailing white space characters.
** 8 Attempt to break lines on word boundaries.
** 16 Break lines before the original comment embedded in other text.
**
** Note: To preserve line breaks, activate the newer (non-legacy) comment
** printing format (i.e. set to "0", or a combination not including "1").
**
** Note: The options for timeline comments displayed on the web UI can be
** configured through the /setup_timeline web page.
*/
/*
** SETTING: crlf-glob width=40 versionable block-text
** The VALUE of this setting is a list of GLOB patterns matching files
** in which it is allowed to have CR, CR+LF or mixed line endings,
** suppressing Fossil's normal warning about this. Set it to "*" to
** disable CR+LF checking entirely. Example: *.md,*.txt
|
|
<
<
<
|
>
>
>
>
<
|
|
<
<
<
|
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
|
/*
** SETTING: clearsign boolean default=off
** When enabled, fossil will attempt to sign all commits
** with gpg or ssh. When disabled, commits will be unsigned.
*/
/*
** SETTING: comment-format width=16 default=1
** Set the algorithm for printing timeline comments to the console.
**
** Possible values are:
** 1 Use the original comment printing algorithm:
** * Leading and trialing whitespace is removed
** * Internal whitespace is converted into a single space (0x20)
** * Line breaks occurs at whitespace or hyphens if possible
** This is the recommended value and the default.
**
** Or a bitwise combination of the following flags:
** 2 Trim leading and trailing CR and LF characters.
** 4 Trim leading and trailing white space characters.
** 8 Attempt to break lines on word boundaries.
** 16 Break lines before the original comment embedded in other text.
**
** Note: To preserve line breaks and/or other whitespace within comment text,
** make this setting some integer value that omits the "1" bit.
*/
/*
** SETTING: crlf-glob width=40 versionable block-text
** The VALUE of this setting is a list of GLOB patterns matching files
** in which it is allowed to have CR, CR+LF or mixed line endings,
** suppressing Fossil's normal warning about this. Set it to "*" to
** disable CR+LF checking entirely. Example: *.md,*.txt
|