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.
22 lines
618 B
Python
22 lines
618 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
"""Common code for snipMate and UltiSnips snippet files."""
|
|
|
|
|
|
def handle_extends(tail, line_index):
|
|
"""Handles an extends line in a snippet."""
|
|
if tail:
|
|
return 'extends', ([p.strip() for p in tail.split(',')],)
|
|
else:
|
|
return 'error', ("'extends' without file types", line_index)
|
|
|
|
|
|
def handle_action(head, tail, line_index):
|
|
if tail:
|
|
action = tail.strip('"').replace(r'\"', '"').replace(r'\\\\', r'\\')
|
|
return head, (action,)
|
|
else:
|
|
return 'error', ("'{}' without specified action".format(head),
|
|
line_index)
|