fix autotrigger on backspace

This commit is contained in:
Stanislav Seletskiy 2016-12-16 12:10:07 +07:00
parent 9a670c502b
commit f974e0317f

View File

@ -840,7 +840,7 @@ class SnippetManager(object):
if inserted_char == '': if inserted_char == '':
before = _vim.buf.line_till_cursor before = _vim.buf.line_till_cursor
if before and before[-1] == self._last_change[0] or \ if before and before[-1] == self._last_change[0] or \
self._last_change[1] != vim.current.line: self._last_change[1] != vim.current.window.cursor[0]:
self._try_expand(autotrigger_only=True) self._try_expand(autotrigger_only=True)
finally: finally: