If you want to help us developing Kate, KWrite or KatePart, you should join our mailing list. Contacting us at #kate at the freenode irc network is also a good idea, we are always happy to help you getting started.
Also, see the resource lists to the right for relevant resources.
The main work area is the programming, but if you are not a programmer you can help in many other areas:
We do not have very strict rules for code in the kate team, basically having this kate variable line in your source files will do:
kate: space-indent on; indent-width: 2; mixed-indent off;
In addition, most of us have a newline before the opening brace of blocks:
void KateSomething::foo()
{
// I'll foo you
while ( bar )
{
baz();
}
}
Kate’s own C style indenter works nice for the code style we use in Kate code — surprise ;)
We use Doxygen syntax to document code, and it’s nice to document everything, even private code, since other people than you might get to work on it or just try to understand it.
For comments inside of functions, C++ single-line comments are preferred over the multi-line C comments.