Fixed a bug in UltiSnipsEdit!

Closes #237
This commit is contained in:
Holger Rapp 2014-03-07 10:51:04 +01:00
parent 6398a598b5
commit c6906d85be

View File

@ -524,7 +524,8 @@ class SnippetManager(object):
if bang:
potentials.update(find_all_snippet_files(ft))
potentials = set(os.path.realpath(p) for p in potentials)
potentials = set(os.path.realpath(os.path.expanduser(p))
for p in potentials)
if len(potentials) > 1:
files = sorted(potentials)