FixIndent

FixIndent is a plugin for Panic's Coda. It works as a basic code prettifier by converting ugly code like this:

int main()
{
cout << "hello";
cout << "world";
cout << endl;
}


Into pretty code like this:


int main()
{
cout << "hello";
cout << "world";
cout << endl;
}

FixIndent works with any language that uses curly braces (sorry, Python).

Download

Click to download.

Source

Available on GitHub.

Found a Bug?

Please email me.

Coda Logo