Guidelines for LaTeXila
=======================

LaTeXila source code is maintained using the Git version control system
and is available at the following location:

    git://latexila.git.sourceforge.net/gitroot/latexila/latexila

A Web Interface is available at:

    http://latexila.git.sourceforge.net/

You can download the source code from the Git repository by doing:

    $ git clone git://latexila.git.sourceforge.net/gitroot/latexila/latexila

Later, to take the new commits you just have to do:

    $ git pull


If you want to contribute to LaTeXila, contact the main developer (see the file AUTHORS).
Here is how you can generate a patch:

    $ git diff origin > patch

There are some rules to follow when coding:
    - tab width: 4
    - lines: 80 characters maximum (in some cases it can be a little more)
    - same coding style everywhere

If you use vim, you can put this in your .vimrc:

    au BufEnter *.c set tabstop=4 shiftwidth=4 cindent textwidth=80 formatoptions=croq
    au BufEnter *.h set tabstop=4 shiftwidth=4 cindent textwidth=80 formatoptions=croq
