diff options
| author | jdhao <jdhao@hotmail.com> | 2020-04-28 12:02:57 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-28 12:02:57 +0800 |
| commit | 9f028a151eaf388a45636e0b776561188f3c6e28 (patch) | |
| tree | 28203e98c293bbf22353421a59e31d5d7eb01f9f | |
| parent | 6ce5714c05147712de10d7ea4a42c655948a9c0b (diff) | |
fix: add variable scope
| -rw-r--r-- | plugins.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins.vim b/plugins.vim index cdf6ab1..f7a1e55 100644 --- a/plugins.vim +++ b/plugins.vim @@ -39,7 +39,7 @@ call plug#begin(g:PLUGIN_HOME) " Auto-completion Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } -if executable('clang') && (is_mac || is_linux) +if executable('clang') && (g:is_mac || g:is_linux) Plug 'deoplete-plugins/deoplete-clang' endif |
