diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-31 13:23:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-31 13:23:29 -0400 |
commit | aa2c43994039b4d78ae628f96b80bf1a60b4da6b (patch) | |
tree | 3ccecd954ee0b62b291f5e105b3dd40370c2cde8 /runtime/autoload | |
parent | faca814116282b589319fca738a971ce2a8fef7e (diff) | |
download | rneovim-aa2c43994039b4d78ae628f96b80bf1a60b4da6b.tar.gz rneovim-aa2c43994039b4d78ae628f96b80bf1a60b4da6b.tar.bz2 rneovim-aa2c43994039b4d78ae628f96b80bf1a60b4da6b.zip |
eval.c: rename capture() to execute() (#5132)
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/remote/host.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/remote/host.vim b/runtime/autoload/remote/host.vim index 4ec2eeb5b7..eb5e87d7e1 100644 --- a/runtime/autoload/remote/host.vim +++ b/runtime/autoload/remote/host.vim @@ -121,7 +121,7 @@ endfunction function! s:GetManifest() abort let prefix = exists('$MYVIMRC') \ ? $MYVIMRC - \ : matchstr(get(split(capture('scriptnames'), '\n'), 0, ''), '\f\+$') + \ : matchstr(get(split(execute('scriptnames'), '\n'), 0, ''), '\f\+$') return fnamemodify(expand(prefix, 1), ':h') \.'/.'.fnamemodify(prefix, ':t').'-rplugin~' endfunction |