We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c4f781 commit 3078cd1Copy full SHA for 3078cd1
1 file changed
plugin/editorconfig.vim
@@ -24,12 +24,8 @@
24
" POSSIBILITY OF SUCH DAMAGE.
25
"
26
27
-if v:version < 700
28
- finish
29
-endif
30
-
31
-" check whether this script is already loaded
32
-if exists("g:loaded_EditorConfig")
+" check for Vim versions and duplicate script loading.
+if v:version < 700 || exists("g:loaded_EditorConfig")
33
finish
34
endif
35
let g:loaded_EditorConfig = 1
0 commit comments