From cc3f7f15febb868f964f90d080ec437477300912 Mon Sep 17 00:00:00 2001 From: "Andy K. Massimino" Date: Mon, 10 Aug 2020 22:57:35 -0400 Subject: [PATCH] Use new style ops for newer nvim --- autoload/matchup.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/matchup.vim b/autoload/matchup.vim index 5f130c4..0ce781d 100644 --- a/autoload/matchup.vim +++ b/autoload/matchup.vim @@ -142,7 +142,7 @@ function! s:make_oldstyle_omaps(lhs, rhs) return 1 endfunction -let s:old_style_ops = !has('patch-8.1.0648') +let s:old_style_ops = !(has('patch-8.1.0648') || has('nvim-0.5.0')) let g:v_motion_force = '' function! s:force(wise)