pygdb now saves absolute breakpoint paths
[pygdb.git] / INSTALL.txt
1
2 1. Put the pygdb directory to somewhere, lets call it <dir>
3 2. Add the following lines into your ~/.gvimrc:
4
5 python << >>
6 import sys
7
8 #Do not use a ~ for home directory
9 pygdbdir = "<dir>"
10 sys.path.append(pygdbdir)
11 >>
12
13 autocmd BufRead *.c* source <dir>/pygdb.vim
14 autocmd BufRead *.c* call GDBMapDefaults()
15
16 where you replace <dir> by the corresponding path of pygdb. You may want to
17 add <dir> to the environment variable PATH resp. PYTHONPATH such that you
18 cou can call pygdb from console by hand.