2013-04-22 14:53:16 +00:00
|
|
|
function! UpdateTags()
|
|
|
|
!ctags --recurse=yes ./src/
|
2011-12-10 13:25:22 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-04-22 14:53:16 +00:00
|
|
|
function! RunDebug()
|
|
|
|
UpdateTags()
|
|
|
|
!make BUILDMODE=debug all run_qt
|
2011-12-10 13:25:22 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-04-22 14:53:16 +00:00
|
|
|
function! RunRelease()
|
|
|
|
UpdateTags()
|
|
|
|
!make BUILDMODE=debug all run_qt
|
2011-12-10 13:25:22 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-04-22 14:53:16 +00:00
|
|
|
map <silent> <S-F9> :call RunDebug()<CR>
|
|
|
|
map <silent> <S-F10> :call RunRelease()<CR>
|
|
|
|
map <silent> <F11> :!make tests<CR>
|
2011-12-10 13:25:22 +00:00
|
|
|
|