diff options
author | Micha? G?rny <mgorny@gentoo.org> | 2012-10-19 12:44:21 +0200 |
---|---|---|
committer | Micha? G?rny <mgorny@gentoo.org> | 2012-10-19 12:44:21 +0200 |
commit | 210d44add129caf389cc9b1c5c8850ed7e601643 (patch) | |
tree | dd44302601c217e61e765b7abc1b536327855b4a | |
parent | 02528e23b813468ed1b2489475a706a3ae828d81 (diff) | |
download | pygments-210d44add129caf389cc9b1c5c8850ed7e601643.tar.gz |
Introduce a very simple vim modeline parser.
-rw-r--r-- | pygments/modeline.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/pygments/modeline.py b/pygments/modeline.py new file mode 100644 index 00000000..72b6fbc4 --- /dev/null +++ b/pygments/modeline.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +""" + pygments.modeline + ~~~~~~~~~~~~~~~~~ + + A simple modeline parser (based on pymodeline). + + :copyright: Copyright 2006-2012 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" +import re + +__all__ = ['get_filetype_from_buffer'] + +modeline_re = re.compile(r''' + (?: vi | vim | ex ) (?: [<=>]? \d* )? : + .* (?: ft | filetype | syn | syntax ) = ( [^:\s]+ ) +''', re.VERBOSE) + +def get_filetype_from_line(l): + m = modeline_re.search(l) + if m: + return m.group(1) + +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 + for l in lines[max_lines:0:-1]: + ret = get_filetype_from_line(l) + if ret: + return ret + + return None |