Fix some 'No such mapping' warnings which led to random test failures on my system

This commit is contained in:
Holger Rapp 2011-02-20 21:18:45 +01:00
parent 37f28fe580
commit cee3b423fc

View File

@ -1775,8 +1775,7 @@ class _AnonBase(_VimTest):
self.send(":inoremap <silent> " + EA + ' <C-R>=UltiSnips_Anon(' self.send(":inoremap <silent> " + EA + ' <C-R>=UltiSnips_Anon('
+ self.args + ')<cr>\n') + self.args + ')<cr>\n')
def _options_off(self): def _options_off(self):
self.send(":iunmap <silent> " + EA + ' <C-R>=UltiSnips_Anon(' self.send(":iunmap <silent> " + EA + '\n')
+ self.args + ')<cr>\n')
class Anon_NoTrigger_Simple(_AnonBase): class Anon_NoTrigger_Simple(_AnonBase):
args = '"simple expand"' args = '"simple expand"'