Michaël Lemaire
a9c37d2ad5
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@557 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
18 lines
368 B
VimL
18 lines
368 B
VimL
function! UpdateTags()
|
|
!ctags --recurse=yes ./src/
|
|
endfunction
|
|
|
|
function! RunDebug()
|
|
UpdateTags()
|
|
!make BUILDMODE=debug all run_qt
|
|
endfunction
|
|
|
|
function! RunRelease()
|
|
UpdateTags()
|
|
!make BUILDMODE=debug all run_qt
|
|
endfunction
|
|
|
|
map <silent> <S-F9> :call RunDebug()<CR>
|
|
map <silent> <S-F10> :call RunRelease()<CR>
|
|
map <silent> <F11> :!make tests<CR>
|
|
|