From daaf92b5bc282d478e5cfb1cab764999fb6accf2 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Tue, 8 Oct 2019 14:53:24 +0200 Subject: [PATCH] [shellscript] Make \n the default eol. Fixes #49418 --- extensions/shellscript/package.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/extensions/shellscript/package.json b/extensions/shellscript/package.json index a55af2b08ff..211401a070c 100644 --- a/extensions/shellscript/package.json +++ b/extensions/shellscript/package.json @@ -23,6 +23,12 @@ "language": "shellscript", "scopeName": "source.shell", "path": "./syntaxes/shell-unix-bash.tmLanguage.json" - }] + }], + "configurationDefaults": { + "[shellscript]": { + "files.eol": "\n" + } + } + } }