How to set QtCreator's indentation for JavaScript files?
Unsolved
General and Desktop
-
I'm trying to code and array of objects in JavaScript and am finding QtCreator's default indentation of 12 spaces a bit excessive. I'd like to change this to 4 but cannot find any place in Tools/Options that will allow be to do this. Is it possible to change this?
var actions = [ { id: "gf/cut", action: function() { Environment.cutSelection(); } }, { id: "gf/copy", action: function() { Environment.copySelection(); } }, { id: "gf/paste", action: function() { Environment.pasteSelection(); } }, ];
-