settings.json has integers for 1/0, not strings

This commit is contained in:
Strahinja Val Markovic 2013-10-03 14:02:22 -07:00
parent 54255318f1
commit 62f813367d

View File

@ -18,15 +18,15 @@
"seed_identifiers_with_syntax": 0, "seed_identifiers_with_syntax": 0,
"csharp_server_port": 2000, "csharp_server_port": 2000,
"filetype_whitelist": { "filetype_whitelist": {
"*": "1" "*": 1
}, },
"auto_start_csharp_server": 1, "auto_start_csharp_server": 1,
"filetype_blacklist": { "filetype_blacklist": {
"tagbar": "1", "tagbar": 1,
"qf": "1", "qf": 1,
"notes": "1", "notes": 1,
"markdown": "1", "markdown": 1,
"unite": "1", "unite": 1,
"text": "1" "text": 1
} }
} }