pl
Size: a a a
pl
V
pl
pl
pl
pl
python.vim
), потом собиру их в мейн конфиге, то подключение плагинов, находящихся в python.vim
заработает?pl
call plug#begin()
Plug shtoto
call plug#end()
pl
G
pl
pl
pl
pl
V
G
8. Selection registers "* and "+
Use these registers for storing and retrieving the selected text for the GUI.
See |quotestar| and |quoteplus|. When the clipboard is not available or not
working, the unnamed register is used instead. For Unix systems and Mac OS X,
see |primary-selection|.
G
pl
call plug#begin()
Plug shtoto
call plug#end()
по нескольким файлам, то какой из них будет работать?G
call plug#begin()
Plug shtoto
call plug#end()
по нескольким файлам, то какой из них будет работать?" file1.vim:
function LoadPlugins1()
Plug '...'
endfunction
" file2.vim:
function LoadPlugins2()
Plug '...'
endfunction
" init.vim:
" source all files
call plug#begin()
call LoadPlugins1()
call LoadPlugins2()
" ...
call plug#end()
?pl
filetype python
do source ~/.vim/scripts/python.vim
pl