makebg : Shell script to perform make in the background.
| script karma |
Rating 3/3,
Downloaded by 327
|
Comments, bugs, improvements
|
Vim wiki
|
| created by |
| Sameer Sheorey |
| |
| script type |
| utility |
| |
| description |
Use: makebg VIMSERVER MAKEPRG MAKEEF
Inside Vim, use this mapping for Fn12:
map <F12> :exec "!makebg" v:servername "'" . &makeprg . "'" &makeef<CR><CR>
Execute make in the background. Vim will automatically open the quickfix error window and jump to the first error when make is done. The mapping enables you to use your custom makeprg and makeef options, otherwise default values are used. Errors from the current run of make are prepended to the previous errors. To clear previous errors, use this mapping for Shift + Fn12:
map <S-F12> :exec "!rm " &makeef "; makebg" v:servername "'" . &makeprg . "'" &makeef<CR><CR>
Add these mappings to your vimrc for convenience.
This is Unix only (GNU/Linux, *BSD, Solaris, Mac OSX, Cygwin)
|
| |
| install details |
Put the script somewhere in your path (eg: /usr/local/bin or ~/bin) and make it executable:
chmod +x makebg |
| |
script versions (upload new version)
Click on the package to download.
ip used for rating: 54.224.79.93
|