summaryrefslogtreecommitdiff
path: root/gdbinit
blob: cb20922e3633a37fc71fe7cc5b202143dc146986 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# dotfiles -- gdbinit
# author: johannst

set history filename ~/.gdb/gdb_history
set history save on

set prompt bla> 

define bs
	save breakpoints ~/.gdb/breakpoint.$arg0.save
end

define br
	source ~/.gdb/breakpoint.$arg0.save
end

define hook-quit
	bs q
end