mirror of
https://github.com/Lissy93/dotfiles.git
synced 2025-01-10 22:28:13 +01:00
7 lines
165 B
VimL
7 lines
165 B
VimL
fu! s:InstallRequirements()
|
|
silent !clear
|
|
execute '!' . 'pip install -r ' . bufname('%')
|
|
endfu
|
|
|
|
:command! -bar InstallRequirements :call s:InstallRequirements()
|