From 5ea8ebc959616e7b42e06f0d8d57fb15a5b1805e Mon Sep 17 00:00:00 2001 From: Carlo Baldassi Date: Thu, 23 Apr 2015 00:43:03 +0200 Subject: [PATCH] Fix L2U_ismatch function call --- autoload/LaTeXtoUnicode.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/LaTeXtoUnicode.vim b/autoload/LaTeXtoUnicode.vim index ea64be6..e9d2975 100644 --- a/autoload/LaTeXtoUnicode.vim +++ b/autoload/LaTeXtoUnicode.vim @@ -354,7 +354,7 @@ function! LaTeXtoUnicode#Tab() " the is passed through to the fallback mapping if the completion " menu is present, and it hasn't been raised by the L2U tab, and there " isn't an exact match before the cursor when suggestions are disabled - if pumvisible() && !b:l2u_tab_completing && (get(g:, "latex_to_unicode_suggestions", 1) || !LaTeXtoUnicode#ismatch()) + if pumvisible() && !b:l2u_tab_completing && (get(g:, "latex_to_unicode_suggestions", 1) || !s:L2U_ismatch()) call feedkeys(s:l2u_fallback_trigger) return '' endif