Mercurial > vim-gutentags
comparison plugin/gutentags.vim @ 208:18dbf8d02b4c
Lower Vim version requirement since we also check for the job API directly.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 08 Apr 2018 13:27:54 -0700 |
parents | b50b6d0f82dd |
children | 34bee0477b51 |
comparison
equal
deleted
inserted
replaced
207:20bfab5b054f | 208:18dbf8d02b4c |
---|---|
6 | 6 |
7 if (&cp || get(g:, 'gutentags_dont_load', 0)) | 7 if (&cp || get(g:, 'gutentags_dont_load', 0)) |
8 finish | 8 finish |
9 endif | 9 endif |
10 | 10 |
11 if v:version < 800 | 11 if v:version < 704 |
12 echoerr "gutentags: this plugin requires vim >= 8.0." | 12 echoerr "gutentags: this plugin requires vim >= 7.4." |
13 finish | 13 finish |
14 endif | 14 endif |
15 | 15 |
16 if !(has('job') || (has('nvim') && exists('*jobwait'))) | 16 if !(has('job') || (has('nvim') && exists('*jobwait'))) |
17 echoerr "gutentags: this plugin requires the job API from Vim8 or Neovim." | 17 echoerr "gutentags: this plugin requires the job API from Vim8 or Neovim." |