From ee5ac6a582b0b452be0a550463f744deeaed5bbb Mon Sep 17 00:00:00 2001 From: Wayne Ashley Berry Date: Tue, 30 Aug 2016 09:35:21 +0200 Subject: [PATCH] Update options.md Fixes json syntax and adds syntax highlighting. --- runtime/help/options.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/help/options.md b/runtime/help/options.md index de3d5e96..bf94bfee 100644 --- a/runtime/help/options.md +++ b/runtime/help/options.md @@ -123,16 +123,16 @@ In the `settings.json` file you can also put set options locally by specifying a Here is an example which has `tabstospaces` on for all files except Go files, and `tabsize` 4 for all files except Ruby files: -``` +```json { "*.go": { "tabstospaces": false }, "*.rb": { "tabsize": 2 - } + }, "tabstospaces": true, - "tabsize": 4, + "tabsize": 4 } ```