We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d589986 commit adf218bCopy full SHA for adf218b
autoload/LaTeXtoUnicode.vim
@@ -59,13 +59,9 @@ function! s:L2U_SetupGlobal()
59
let g:latex_to_unicode_suggestions = 0
60
endif
61
62
- " A hack to forcibly get out of completion mode: feed
63
- " this string with feedkeys()
64
- if has("win32") || has("win64")
65
- let s:l2u_esc_sequence = "\u0006"
66
- else
67
- let s:l2u_esc_sequence = "\u0091\b"
68
- end
+ " Forcibly get out of completion mode: feed
+ " this string with feedkeys(s:l2u_esc_sequence, 'n')
+ let s:l2u_esc_sequence = " \b"
69
70
" Trigger for the previous mapping of <Tab>
71
let s:l2u_fallback_trigger = "\u0091L2UFallbackTab"
0 commit comments