-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't require exactly one space before or after =
My postgresql.conf looks like this: checkpoint_timeout = 30min # Max. time between checkpoints; Default: 5min max_wal_size = 4GB # Default: 1G min_wal_size = 256MB # Default: 80M It would fail to detect these keys as the tuneRegexFmt and tuneRegexQuotedFmt require exactly " = "; this changes that to "\s*=\s*" to accept any whitespace. It doesn't make any effort to write these spaces back – might be nice too, but I couldn't be bothered 😅 Also use ` for these strings so you don't need to double up the backslashes.
- Loading branch information
Showing
2 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters