From 323148d9ab54ae443453ba72b90489d2533cc51a Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 17 Aug 2017 03:24:09 -0400 Subject: [PATCH] Disables whitespace toggling by default --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec949a5..6e614a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## Changed - Changes chat links from Gitter to [Slack](https://join.slack.com/t/vscode-gitlens/shared_invite/MjIxOTgxNDE3NzM0LTE1MDE2Nzk1MTgtMjkwMmZjMzcxNQ) - Changes the look of the line separators on the gutter blame annotations -- Changes gitlens.advanced.toggleWhitespace.enabled +- Changes the `gitlens.advanced.toggleWhitespace.enabled` configuration setting to default to `false` -- as this should no longer be required ## Removed - Removes unneeded `gitlens.stashExplorer.enabled` configuration setting since users can add or remove custom views natively now diff --git a/package.json b/package.json index b6d444f..5d8ea12 100644 --- a/package.json +++ b/package.json @@ -743,7 +743,7 @@ }, "gitlens.advanced.toggleWhitespace.enabled": { "type": "boolean", - "default": true, + "default": false, "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)" } }