Quellcode durchsuchen

added install command

bmallred vor 10 Jahren
Ursprung
Commit
15348b880b
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 1 1
      autoload/vs/cmd.vim
  2. 1 0
      ftplugin/vs/commands.vim

+ 1 - 1
autoload/vs/cmd.vim

@ -4,7 +4,7 @@ endif
4 4
5 5
function! vs#cmd#Build(bang,...)
6 6
    echon "vim-vs: " | echohl Identifier | echon "building..." | echohl None
7
    silent! exe 'make!'
7
    silent! exe 'make! '. a:bang
8 8
    redraw!
9 9
    if !a:bang
10 10
        cwindow

+ 1 - 0
ftplugin/vs/commands.vim

@ -4,4 +4,5 @@ endif
4 4
let g:vs_loaded_commands = 1
5 5
6 6
nnoremap <silent> <Plug>(vs-build) :<C-u>call vs#cmd#Build('')<CR>
7
nnoremap <silent> <Plug>(vs-install) :<C-u>call vs#cmd#Build('install')<CR>
7 8
nnoremap <silent> <Plug>(vs-doc) :<C-u>call vs#doc#OpenBrowser()<CR>