Using VSCode 1.9.0 with the extension (donjayamanne) of Python 0.5.8, is it possible to provide special options for the Python editor?
Or, more generally, is it possible to set language intervals and replacement rules? For example, Python should have tab = 4 spaces (replaced as spaces), and Ruby should have tab = 2 spaces (replaced). Other languages ββhave their own opinions. However, I see only the general
"editor.tabSize": 4, "editor.insertSpaces": true,
options.
I thought that maybe there is a "python.editor": { }
block "python.editor": { }
or maybe "python.editor.tabSize"
, but I canβt find a link to it, and I didnβt guess the working name.
source share