From f347038e9b58d58b615d1e54ef930d9fb007f88c Mon Sep 17 00:00:00 2001 From: Jim Hessin Date: Tue, 27 Feb 2018 05:10:38 -0700 Subject: [PATCH] Update language-configuration.json A simple change allowing the user to surround selected code in spaces so instead of being stuck surrounding things tightly spaces can be used. i.e.: ```coffeescript import {subobject} from 'somelibrary' ``` can quickly become: ```coffeescript import { subobject } from 'somelibrary' ``` --- extensions/coffeescript/language-configuration.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/coffeescript/language-configuration.json b/extensions/coffeescript/language-configuration.json index 01fc34db790..fd4a1b88c87 100644 --- a/extensions/coffeescript/language-configuration.json +++ b/extensions/coffeescript/language-configuration.json @@ -20,7 +20,8 @@ ["[", "]"], ["(", ")"], ["\"", "\""], - ["'", "'"] + ["'", "'"], + [" ", " "] ], "folding": { "offSide": true,