In Germany a comma isn't usually a separator for csv fields. And my data uses the comma as a decimal point.
What do I have to set in my user settings that the package will only use the semicolon as a field separator for csv files?
I tried the following without any effect:
{
"delimiter_mapping": {
"*.csv": ";",
"*.psv": "|",
"*.tsv": "\t"
},
"delimiter": ";",
"auto_quote": true
}