mirror of
https://github.com/neovim/neovim.git
synced 2025-10-10 20:06:33 +00:00
runtime: Prepend the vimrc filename to the external plugin manifest
This is required to support multiple vimrcs with each having it's own set of installed external plugins.
This commit is contained in:
@@ -2,7 +2,8 @@ let s:hosts = {}
|
||||
let s:plugin_patterns = {
|
||||
\ 'python': '*.py'
|
||||
\ }
|
||||
let s:external_plugins = fnamemodify($MYVIMRC, ':p:h').'/.external_plugins~'
|
||||
let s:external_plugins = fnamemodify($MYVIMRC, ':p:h')
|
||||
\.'/.'.fnamemodify($MYVIMRC, ':t').'-external-plugins~'
|
||||
|
||||
|
||||
" Register a host by associating it with a factory(funcref)
|
||||
|
Reference in New Issue
Block a user