mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 22:38:16 +00:00

Quoting the existing docs: Packages are loaded. These are plugins, as above [&runtimepath], but found in the "start" directory of each entry in 'packpath'. Every plugin directory found is added in 'runtimepath' and then the plugins are sourced. Also tj didn't think I could do it.
4 lines
59 B
VimL
4 lines
59 B
VimL
function! leftpad#pad(str)
|
|
return ' '.a:str
|
|
endfunction
|