From fd9cc71eebe5a0829664a74d8767214a23f08b7c Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 17 Jun 2018 22:17:39 +1200 Subject: Add version guard --- plugin/copy_linebreak.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/copy_linebreak.vim b/plugin/copy_linebreak.vim index 8ee6c05..89fba9e 100644 --- a/plugin/copy_linebreak.vim +++ b/plugin/copy_linebreak.vim @@ -9,7 +9,7 @@ if exists('g:loaded_copy_linebreak') || &compatible finish endif -if !has('linebreak') +if !has('linebreak') || v:version < 600 finish endif let g:loaded_copy_linebreak = 1 -- cgit v1.2.3