You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
392 B
Python
11 lines
392 B
Python
8 years ago
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
"""Sources of snippet definitions."""
|
||
|
|
||
|
from UltiSnips.snippet.source._base import SnippetSource
|
||
|
from UltiSnips.snippet.source.added import AddedSnippetsSource
|
||
|
from UltiSnips.snippet.source.file.snipmate import SnipMateFileSource
|
||
|
from UltiSnips.snippet.source.file.ultisnips import UltiSnipsFileSource, \
|
||
|
find_all_snippet_files, find_snippet_files
|