Skip to content

Commit

Permalink
Fix L2U_ismatch function call
Browse files Browse the repository at this point in the history
  • Loading branch information
carlobaldassi committed Apr 22, 2015
1 parent e330617 commit 5ea8ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/LaTeXtoUnicode.vim
Expand Up @@ -354,7 +354,7 @@ function! LaTeXtoUnicode#Tab()
" the <Tab> 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
Expand Down

0 comments on commit 5ea8ebc

Please sign in to comment.