Merge pull request #2283 from Kamilcuk/master

Fix typo in checking if gen_tags plugin is loaded
This commit is contained in:
Christian Brabandt 2020-11-09 18:26:12 +01:00 committed by GitHub
commit bb760710cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@
scriptencoding utf-8
if !(get(g:, 'loaded_gentags#gtags', 0) || !get(g:, 'loaded_gentags#ctags', 0))
if !(get(g:, 'loaded_gentags#gtags', 0) || get(g:, 'loaded_gentags#ctags', 0))
finish
endif