From d0c4f31c1fd61774c2cb70eff1f22d4e0bf24c43 Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Mon, 10 Feb 2014 22:07:40 +0100 Subject: [PATCH] Improved a comment. --- pythonx/UltiSnips/vim_state.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pythonx/UltiSnips/vim_state.py b/pythonx/UltiSnips/vim_state.py index d64254e..ccaded8 100755 --- a/pythonx/UltiSnips/vim_state.py +++ b/pythonx/UltiSnips/vim_state.py @@ -37,9 +37,9 @@ class VimState(object): def remember_unnamed_register(self, text_to_expect): """Save the unnamed register. 'text_to_expect' is text that we expect - to be currently contained in the register - this could be text from the - tabstop that was selected and might have been overwritten. We will not - cash that then.""" + to be contained in the register the next time this method is called - + this could be text from the tabstop that was selected and might have + been overwritten. We will not cash that then.""" self._unnamed_reg_cached = True unnamed_reg = _vim.eval('@"') if unnamed_reg != self._text_to_expect: