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
375 B
Python
11 lines
375 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
"""Sources of snippet definitions."""
|
|
|
|
# TODO(sirver): these should register themselves with the Manager, so that
|
|
# other plugins can extend them more easily.
|
|
from UltiSnips.providers.snippet_file import UltiSnipsFileProvider, \
|
|
base_snippet_files_for
|
|
from UltiSnips.providers.added_snippets_provider import AddedSnippetsProvider
|