Small documentation fixes.

This commit is contained in:
Holger Rapp 2014-02-08 15:53:18 +01:00
parent 773869b1e1
commit 72beeb28f4

View File

@ -41,7 +41,7 @@ def _ask_snippets(snippets):
return None return None
def _base_snippet_files_for(ft, default=True): def _base_snippet_files_for(ft, default=True):
""" Returns a list of snippet files matching the given filetype (ft). """Returns a list of snippet files matching the given filetype (ft).
If default is set to false, it doesn't include shipped files. If default is set to false, it doesn't include shipped files.
Searches through each path in 'runtimepath' in reverse order, Searches through each path in 'runtimepath' in reverse order,
@ -76,15 +76,11 @@ def _base_snippet_files_for(ft, default=True):
for fn in glob.glob(os.path.join(pth, pattern % ft)): for fn in glob.glob(os.path.join(pth, pattern % ft)):
if fn not in ret: if fn not in ret:
ret.append(fn) ret.append(fn)
return ret return ret
def _plugin_dir(): def _plugin_dir():
""" Calculates the plugin directory for UltiSnips. This depends on the """Calculates the plugin directory for UltiSnips."""
current file being 3 levels deep from the plugin directory, so it needs to
be updated if the code moves.
"""
directory = __file__ directory = __file__
for _ in range(10): for _ in range(10):
directory = os.path.dirname(directory) directory = os.path.dirname(directory)