Skip to content

Commit f347038

Browse files
authored
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' ```
1 parent d7df300 commit f347038

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

extensions/coffeescript/language-configuration.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
["[", "]"],
2121
["(", ")"],
2222
["\"", "\""],
23-
["'", "'"]
23+
["'", "'"],
24+
[" ", " "]
2425
],
2526
"folding": {
2627
"offSide": true,

0 commit comments

Comments
 (0)