From b11b27ca03fbdbe8f487da83094c67d7b4b05478 Mon Sep 17 00:00:00 2001 From: Emmanuel BENOIT <emmanuel.benoit@agrocampus-ouest.fr> Date: Wed, 13 May 2020 10:46:01 +0200 Subject: [PATCH] Disabled vimmake for now, the github repo is gone --- bundles-init/vimmake.cfg.vim | 88 +++++++++++++++++------------------ bundles-init/vimmake.load.vim | 2 +- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/bundles-init/vimmake.cfg.vim b/bundles-init/vimmake.cfg.vim index 6a4d8e6..74c321c 100644 --- a/bundles-init/vimmake.cfg.vim +++ b/bundles-init/vimmake.cfg.vim @@ -1,44 +1,44 @@ -if exists( 'g:vim_local_path' ) - let g:vimmake_path = g:vim_local_path . 'scripts' - - let g:vimmake_mode = {} - let g:vimmake_mode['clean'] = 'async' - let g:vimmake_mode['build'] = 'async' - let g:vimmake_mode['rebuild'] = 'async' - let g:vimmake_mode['test'] = 'async' - - function! DoBuild(full) - silent call vimmake#toggle_quickfix(12,1) - if a:full == 0 - VimTool build - else - VimTool rebuild - endif - endfunc - - function! KillBuild() - silent call vimmake#toggle_quickfix(0) - VimStop - endfunc - - function! RunTest() - silent call vimmake#toggle_quickfix(12,1) - VimTool test - endfunc - - augroup QuickfixStatus - au! BufWinEnter quickfix setlocal - \ statusline=%t\ [%{g:vimmake_build_status}]\ %{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}\ %=%-15(%l,%c%V%)\ %P - augroup END - - noremap <F12> :silent call vimmake#toggle_quickfix(12)<cr> - inoremap <F12> <esc>:silent call vimmake#toggle_quickfix(12)<cr>li - noremap <F10> :silent call DoBuild(0)<cr> - inoremap <F10> <esc>:silent call DoBuild(0)<cr>li - noremap <S-F10> :silent call DoBuild(1)<cr> - inoremap <S-F10> <esc>:silent call DoBuild(1)<cr>li - noremap <C-F10> :silent call KillBuild()<cr> - inoremap <C-F10> <esc>:silent call KillBuild()<cr>li - noremap <F11> :silent call RunTest()<cr> - inoremap <F11> <esc>:silent call RunTest()<cr>li -endif +"if exists( 'g:vim_local_path' ) +" let g:vimmake_path = g:vim_local_path . 'scripts' +" +" let g:vimmake_mode = {} +" let g:vimmake_mode['clean'] = 'async' +" let g:vimmake_mode['build'] = 'async' +" let g:vimmake_mode['rebuild'] = 'async' +" let g:vimmake_mode['test'] = 'async' +" +" function! DoBuild(full) +" silent call vimmake#toggle_quickfix(12,1) +" if a:full == 0 +" VimTool build +" else +" VimTool rebuild +" endif +" endfunc +" +" function! KillBuild() +" silent call vimmake#toggle_quickfix(0) +" VimStop +" endfunc +" +" function! RunTest() +" silent call vimmake#toggle_quickfix(12,1) +" VimTool test +" endfunc +" +" augroup QuickfixStatus +" au! BufWinEnter quickfix setlocal +" \ statusline=%t\ [%{g:vimmake_build_status}]\ %{exists('w:quickfix_title')?\ '\ '.w:quickfix_title\ :\ ''}\ %=%-15(%l,%c%V%)\ %P +" augroup END +" +" noremap <F12> :silent call vimmake#toggle_quickfix(12)<cr> +" inoremap <F12> <esc>:silent call vimmake#toggle_quickfix(12)<cr>li +" noremap <F10> :silent call DoBuild(0)<cr> +" inoremap <F10> <esc>:silent call DoBuild(0)<cr>li +" noremap <S-F10> :silent call DoBuild(1)<cr> +" inoremap <S-F10> <esc>:silent call DoBuild(1)<cr>li +" noremap <C-F10> :silent call KillBuild()<cr> +" inoremap <C-F10> <esc>:silent call KillBuild()<cr>li +" noremap <F11> :silent call RunTest()<cr> +" inoremap <F11> <esc>:silent call RunTest()<cr>li +"endif diff --git a/bundles-init/vimmake.load.vim b/bundles-init/vimmake.load.vim index 4de0be2..010d829 100644 --- a/bundles-init/vimmake.load.vim +++ b/bundles-init/vimmake.load.vim @@ -1 +1 @@ -NeoBundle 'skywind3000/vimmake' +"NeoBundle 'skywind3000/vimmake'