From ea1caa277784b20a9a98b1e17553dea93f3f32ba Mon Sep 17 00:00:00 2001 From: theVDude Date: Fri, 18 Nov 2016 09:40:59 -0500 Subject: [PATCH] Sublime Text doesn't like the comma here Sublime Text 2 will pop up an error on installing with Package Control, because the comma is followed by a closing bracket. Removing it should fix it! --- AdvancedCSV.sublime-settings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AdvancedCSV.sublime-settings b/AdvancedCSV.sublime-settings index fbeaabf..375bef2 100644 --- a/AdvancedCSV.sublime-settings +++ b/AdvancedCSV.sublime-settings @@ -2,7 +2,7 @@ "delimiter_mapping": { "*.csv": ",", "*.psv": "|", - "*.tsv": "\t", + "*.tsv": "\t" }, "delimiter": ",", "auto_quote": true