config: fix missing space in docs

fixes #12873

comment/docs only change:
switched space and tab in default value of `selection-word-chars`
so there is no space at the value boundary
needed because markdown trims spaces at the beginning & end
of a code snippet
pull/12879/head
masterflitzer 2026-05-31 18:23:29 +02:00
parent 3e83a54d08
commit a181c386ca
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -752,12 +752,12 @@ foreground: Color = .{ .r = 0xFF, .g = 0xFF, .b = 0xFF },
/// The null character (U+0000) is always treated as a boundary and does not /// The null character (U+0000) is always treated as a boundary and does not
/// need to be included in this configuration. /// need to be included in this configuration.
/// ///
/// Default: `` \t'"│`|:;,()[]{}<>$ `` /// Default: ``\t '"│`|:;,()[]{}<>$``
/// ///
/// To add or remove specific characters, you can set this to a custom value. /// To add or remove specific characters, you can set this to a custom value.
/// For example, to treat semicolons as part of words: /// For example, to treat semicolons as part of words:
/// ///
/// selection-word-chars = " \t'\"│`|:,()[]{}<>$" /// selection-word-chars = "\t '\"│`|:,()[]{}<>$"
/// ///
/// Available since: 1.3.0 /// Available since: 1.3.0
@"selection-word-chars": SelectionWordChars = .{}, @"selection-word-chars": SelectionWordChars = .{},