From a800b51e0ed0bc717a72d34d88a54717a38464db Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Wed, 5 Mar 2014 19:04:16 +0100 Subject: [PATCH] Removed no longer planned TODOs --- pythonx/UltiSnips/snippet/source/file/_base.py | 2 -- pythonx/UltiSnips/snippet/source/file/snipmate.py | 8 -------- 2 files changed, 10 deletions(-) diff --git a/pythonx/UltiSnips/snippet/source/file/_base.py b/pythonx/UltiSnips/snippet/source/file/_base.py index 54b855a..425e3dd 100644 --- a/pythonx/UltiSnips/snippet/source/file/_base.py +++ b/pythonx/UltiSnips/snippet/source/file/_base.py @@ -94,8 +94,6 @@ class SnippetFileSource(SnippetSource): _vim.escape(filename)) raise SnippetSyntaxError(filename, line_index, msg) elif event == "clearsnippets": - # TODO(sirver): clear snippets should clear for - # more sources, not only ultisnips files. triggers, = data self._snippets[ft].clear_snippets(triggers) elif event == "extends": diff --git a/pythonx/UltiSnips/snippet/source/file/snipmate.py b/pythonx/UltiSnips/snippet/source/file/snipmate.py index 3466726..8e22bae 100644 --- a/pythonx/UltiSnips/snippet/source/file/snipmate.py +++ b/pythonx/UltiSnips/snippet/source/file/snipmate.py @@ -12,14 +12,6 @@ from UltiSnips.snippet.source.file._base import SnippetFileSource from UltiSnips.snippet.source.file._common import handle_extends from UltiSnips.text import LineIterator, head_tail -# TODO(sirver): garbas/snipMate supports guard expressions. I could not figure -# out how the work though and therefore did not implement them. They should be -# fairly straightforward to add if I understand their purpose correctly. - -# TODO(sirver): the snipMate docs state that a snippet without description gets -# overwritten by one with the same trigger but without description. I find this -# silly and will only implement if people start complaining. - def _splitall(path): """Split 'path' into all its components.""" # From http://my.safaribooksonline.com/book/programming/