File: HACKING

package info (click to toggle)
latexila 0.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,968 kB
  • ctags: 1,205
  • sloc: ansic: 8,332; xml: 130; makefile: 11
file content (35 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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