vim-rana-local/packages/wakatime/packages/pygments/modeline.py

45 lines
1010 B
Python
Raw Normal View History

2013-09-22 23:22:11 +00:00
# -*- coding: utf-8 -*-
"""
pygments.modeline
~~~~~~~~~~~~~~~~~
A simple modeline parser (based on pymodeline).
2017-02-14 07:32:53 +00:00
:copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
2013-09-22 23:22:11 +00:00
:license: BSD, see LICENSE for details.
"""
import re
__all__ = ['get_filetype_from_buffer']
2016-06-13 14:48:11 +00:00
2013-09-22 23:22:11 +00:00
modeline_re = re.compile(r'''
(?: vi | vim | ex ) (?: [<=>]? \d* )? :
.* (?: ft | filetype | syn | syntax ) = ( [^:\s]+ )
''', re.VERBOSE)
2016-06-13 14:48:11 +00:00
2013-09-22 23:22:11 +00:00
def get_filetype_from_line(l):
m = modeline_re.search(l)
if m:
return m.group(1)
2016-06-13 14:48:11 +00:00
2013-09-22 23:22:11 +00:00
def get_filetype_from_buffer(buf, max_lines=5):
"""
Scan the buffer for modelines and return filetype if one is found.
"""
lines = buf.splitlines()
for l in lines[-1:-max_lines-1:-1]:
ret = get_filetype_from_line(l)
if ret:
return ret
2017-02-14 07:32:53 +00:00
for i in range(max_lines, -1, -1):
if i < len(lines):
ret = get_filetype_from_line(lines[i])
if ret:
return ret
2013-09-22 23:22:11 +00:00
return None