'vim:how to autocompile c file in the floaterm

I am using floaterm, which is a vim plugin. It is shown in the link. I want to set <F5> as the key to compile c file in the floaterm. And this is the setting:

noremap <F5> :call CompileRunGcc()<CR>
func! CompileRunGcc()
    exec "w"
    if &filetype == 'c'
        FloatermNew gcc -ansi -Wall % -o %< && time ./%<
    endif
endfunc

The :FloatermNew is the one of the options to open floaterm.

When I press <F5>, it does compile in the floaterm, but the floaterm disappears a moment later. So I want to know how to let it compile and the floaterm is still there to show me the output.

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source