Reputation: 7004
In my cloud9 editor, I somehow have for some files that my indent is 3 characters and for others 7.
Is there a way to harmonize this and have the same indent everywhere? Is there perhaps also an auto-indent?
Example of indent with 3 characters:
function indent3() {
// code here
}
Example of indent with 7 characters:
function indent7() {
// code here
}
Upvotes: 2
Views: 2948
Reputation: 1
Another way is to select preferences from the settings button in the upper right corner of the Cloud 9 user interface. This will take you to a GUI where you can set the project's default indent, so all its files have the same indent.
Upvotes: 0
Reputation: 3832
you can adjust the tab sizes by clicking near the bottom right of the editor for that file.
Upvotes: 5