2014-07-07 15:48:09 +02:00
|
|
|
# http://python.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](py) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype python
|
2014-07-07 15:48:09 +02:00
|
|
|
}
|
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
# Highlighters & Completion
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
2014-07-07 15:48:09 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ regions -default code python \
|
2018-01-07 23:30:35 +01:00
|
|
|
docstring '"""' '"""' '' \
|
|
|
|
docstring "'''" "'''" '' \
|
2014-07-14 22:42:19 +02:00
|
|
|
double_string '"' (?<!\\)(\\\\)*" '' \
|
2014-11-05 22:02:06 +01:00
|
|
|
single_string "'" (?<!\\)(\\\\)*' '' \
|
2014-07-14 22:42:19 +02:00
|
|
|
comment '#' '$' ''
|
2014-07-07 15:48:09 +02:00
|
|
|
|
2017-11-14 10:42:57 +01:00
|
|
|
# Integer formats
|
|
|
|
add-highlighter shared/python/code regex '(?i)\b0b[01]+l?\b' 0:value
|
|
|
|
add-highlighter shared/python/code regex '(?i)\b0x[\da-f]+l?\b' 0:value
|
|
|
|
add-highlighter shared/python/code regex '(?i)\b0o?[0-7]+l?\b' 0:value
|
|
|
|
add-highlighter shared/python/code regex '(?i)\b([1-9]\d*|0)l?\b' 0:value
|
|
|
|
# Float formats
|
|
|
|
add-highlighter shared/python/code regex '\b\d+[eE][+-]?\d+\b' 0:value
|
|
|
|
add-highlighter shared/python/code regex '(\b\d+)?\.\d+\b' 0:value
|
|
|
|
add-highlighter shared/python/code regex '\b\d+\.' 0:value
|
|
|
|
# Imaginary formats
|
|
|
|
add-highlighter shared/python/code regex '\b\d+\+\d+[jJ]\b' 0:value
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/python/double_string fill string
|
|
|
|
add-highlighter shared/python/single_string fill string
|
2018-01-07 23:30:35 +01:00
|
|
|
|
|
|
|
add-highlighter shared/python/docstring/ regions -default docstring py-docstring \
|
|
|
|
python '>>> \K' '\z' '' \
|
|
|
|
python '\.\.\. \K' '\z' ''
|
|
|
|
add-highlighter shared/python/docstring/py-docstring/python ref python
|
|
|
|
add-highlighter shared/python/docstring/py-docstring/docstring fill string
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/python/comment fill comment
|
2014-07-07 15:48:09 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
2017-11-14 10:42:57 +01:00
|
|
|
values="True|False|None|self|inf"
|
2016-03-14 17:29:11 +01:00
|
|
|
meta="import|from"
|
2017-11-18 09:56:47 +01:00
|
|
|
|
2017-11-14 10:42:57 +01:00
|
|
|
# attributes and methods list based on https://docs.python.org/3/reference/datamodel.html
|
|
|
|
attributes="__annotations__|__closure__|__code__|__defaults__|__dict__|__doc__"
|
|
|
|
attributes="${attributes}|__globals__|__kwdefaults__|__module__|__name__|__qualname__"
|
|
|
|
methods="__abs__|__add__|__aenter__|__aexit__|__aiter__|__and__|__anext__"
|
|
|
|
methods="${methods}|__await__|__bool__|__bytes__|__call__|__complex__|__contains__"
|
|
|
|
methods="${methods}|__del__|__delattr__|__delete__|__delitem__|__dir__|__divmod__"
|
|
|
|
methods="${methods}|__enter__|__eq__|__exit__|__float__|__floordiv__|__format__"
|
|
|
|
methods="${methods}|__ge__|__get__|__getattr__|__getattribute__|__getitem__"
|
|
|
|
methods="${methods}|__gt__|__hash__|__iadd__|__iand__|__ifloordiv__|__ilshift__"
|
|
|
|
methods="${methods}|__imatmul__|__imod__|__imul__|__index__|__init__"
|
|
|
|
methods="${methods}|__init_subclass__|__int__|__invert__|__ior__|__ipow__"
|
|
|
|
methods="${methods}|__irshift__|__isub__|__iter__|__itruediv__|__ixor__|__le__"
|
|
|
|
methods="${methods}|__len__|__length_hint__|__lshift__|__lt__|__matmul__"
|
|
|
|
methods="${methods}|__missing__|__mod__|__mul__|__ne__|__neg__|__new__|__or__"
|
|
|
|
methods="${methods}|__pos__|__pow__|__radd__|__rand__|__rdivmod__|__repr__"
|
|
|
|
methods="${methods}|__reversed__|__rfloordiv__|__rlshift__|__rmatmul__|__rmod__"
|
|
|
|
methods="${methods}|__rmul__|__ror__|__round__|__rpow__|__rrshift__|__rshift__"
|
|
|
|
methods="${methods}|__rsub__|__rtruediv__|__rxor__|__set__|__setattr__"
|
|
|
|
methods="${methods}|__setitem__|__set_name__|__slots__|__str__|__sub__"
|
|
|
|
methods="${methods}|__truediv__|__xor__"
|
2017-11-18 09:56:47 +01:00
|
|
|
|
|
|
|
# built-in exceptions https://docs.python.org/3/library/exceptions.html
|
|
|
|
exceptions="ArithmeticError|AssertionError|AttributeError|BaseException|BlockingIOError"
|
|
|
|
exceptions="${exceptions}|BrokenPipeError|BufferError|BytesWarning|ChildProcessError"
|
|
|
|
exceptions="${exceptions}|ConnectionAbortedError|ConnectionError|ConnectionRefusedError"
|
|
|
|
exceptions="${exceptions}|ConnectionResetError|DeprecationWarning|EOFError|Exception"
|
|
|
|
exceptions="${exceptions}|FileExistsError|FileNotFoundError|FloatingPointError|FutureWarning"
|
|
|
|
exceptions="${exceptions}|GeneratorExit|ImportError|ImportWarning|IndentationError"
|
|
|
|
exceptions="${exceptions}|IndexError|InterruptedError|IsADirectoryError|KeyboardInterrupt"
|
|
|
|
exceptions="${exceptions}|KeyError|LookupError|MemoryError|ModuleNotFoundError|NameError"
|
|
|
|
exceptions="${exceptions}|NotADirectoryError|NotImplementedError|OSError|OverflowError"
|
|
|
|
exceptions="${exceptions}|PendingDeprecationWarning|PermissionError|ProcessLookupError"
|
|
|
|
exceptions="${exceptions}|RecursionError|ReferenceError|ResourceWarning|RuntimeError"
|
|
|
|
exceptions="${exceptions}|RuntimeWarning|StopAsyncIteration|StopIteration|SyntaxError"
|
|
|
|
exceptions="${exceptions}|SyntaxWarning|SystemError|SystemExit|TabError|TimeoutError|TypeError"
|
|
|
|
exceptions="${exceptions}|UnboundLocalError|UnicodeDecodeError|UnicodeEncodeError|UnicodeError"
|
|
|
|
exceptions="${exceptions}|UnicodeTranslateError|UnicodeWarning|UserWarning|ValueError|Warning"
|
|
|
|
exceptions="${exceptions}|ZeroDivisionError"
|
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
# Keyword list is collected using `keyword.kwlist` from `keyword`
|
2016-11-11 14:07:45 +01:00
|
|
|
keywords="and|as|assert|break|class|continue|def|del|elif|else|except|exec"
|
|
|
|
keywords="${keywords}|finally|for|global|if|in|is|lambda|not|or|pass|print"
|
|
|
|
keywords="${keywords}|raise|return|try|while|with|yield"
|
2017-11-18 09:56:47 +01:00
|
|
|
|
2016-11-11 14:07:45 +01:00
|
|
|
types="bool|buffer|bytearray|bytes|complex|dict|file|float|frozenset|int"
|
|
|
|
types="${types}|list|long|memoryview|object|set|str|tuple|unicode|xrange"
|
2017-11-18 09:56:47 +01:00
|
|
|
|
2016-11-11 14:07:45 +01:00
|
|
|
functions="abs|all|any|ascii|bin|callable|chr|classmethod|compile|complex"
|
|
|
|
functions="${functions}|delattr|dict|dir|divmod|enumerate|eval|exec|filter"
|
|
|
|
functions="${functions}|format|frozenset|getattr|globals|hasattr|hash|help"
|
|
|
|
functions="${functions}|hex|id|__import__|input|isinstance|issubclass|iter"
|
|
|
|
functions="${functions}|len|locals|map|max|memoryview|min|next|oct|open|ord"
|
|
|
|
functions="${functions}|pow|print|property|range|repr|reversed|round"
|
|
|
|
functions="${functions}|setattr|slice|sorted|staticmethod|sum|super|type|vars|zip"
|
2014-07-07 15:48:09 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
# Add the language's grammar to the static completion list
|
2016-04-23 07:47:01 +02:00
|
|
|
printf %s\\n "hook global WinSetOption filetype=python %{
|
2017-11-18 09:56:47 +01:00
|
|
|
set-option window static_words '${values}:${meta}:${attributes}:${methods}:${exceptions}:${keywords}:${types}:${functions}'
|
2018-02-18 05:00:30 +01:00
|
|
|
}" | tr '|' ':'
|
2014-07-07 15:48:09 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
# Highlight keywords
|
2016-03-17 14:30:14 +01:00
|
|
|
printf %s "
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/python/code regex '\b(${values})\b' 0:value
|
|
|
|
add-highlighter shared/python/code regex '\b(${meta})\b' 0:meta
|
2017-11-14 10:42:57 +01:00
|
|
|
add-highlighter shared/python/code regex '\b(${attribute})\b' 0:attribute
|
|
|
|
add-highlighter shared/python/code regex '\bdef\s+(${methods})\b' 1:function
|
2017-11-18 09:56:47 +01:00
|
|
|
add-highlighter shared/python/code regex '\b(${exceptions})\b' 0:function
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/python/code regex '\b(${keywords})\b' 0:keyword
|
|
|
|
add-highlighter shared/python/code regex '\b(${functions})\b\(' 1:builtin
|
|
|
|
add-highlighter shared/python/code regex '\b(${types})\b' 0:type
|
|
|
|
add-highlighter shared/python/code regex '@[\w_]+\b' 0:attribute
|
2016-11-11 14:07:45 +01:00
|
|
|
"
|
2014-07-07 15:48:09 +02:00
|
|
|
}
|
|
|
|
|
2018-01-07 23:35:54 +01:00
|
|
|
add-highlighter shared/python/code regex (?<=[\w\s\d'"_])(<=|<<|>>|>=|<>|<|>|!=|==|\||\^|&|\+|-|\*\*|\*|//|/|%|~) 0:operator
|
|
|
|
add-highlighter shared/python/code regex (?<=[\w\s\d'"_])((?<![=<>!])=(?![=])|[+*-]=) 0:builtin
|
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden python-indent-on-new-line %{
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %{
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy '#' comment prefix and following white spaces
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> s ^\h*#\h* <ret> y jgh P }
|
2014-07-07 15:48:09 +02:00
|
|
|
# preserve previous line indent
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
2016-05-05 14:59:06 +02:00
|
|
|
# cleanup trailing whitespaces from previous line
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft k <a-x> s \h+$ <ret> d }
|
2016-10-13 21:10:41 +02:00
|
|
|
# indent after line ending with :
|
2017-11-03 09:09:45 +01:00
|
|
|
try %{ execute-keys -draft <space> k x <a-k> :$ <ret> j <a-gt> }
|
2014-07-07 15:48:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group python-highlight global WinSetOption filetype=python %{ add-highlighter window ref python }
|
2016-09-25 15:15:07 +02:00
|
|
|
|
2014-07-07 15:48:09 +02:00
|
|
|
hook global WinSetOption filetype=python %{
|
2017-01-02 05:20:05 +01:00
|
|
|
hook window InsertChar \n -group python-indent python-indent-on-new-line
|
2016-05-05 14:59:06 +02:00
|
|
|
# cleanup trailing whitespaces on current line insert end
|
2018-01-21 00:35:05 +01:00
|
|
|
hook window ModeChange insert:.* -group python-indent %{ try %{ execute-keys -draft \; <a-x> s ^\h+$ <ret> d } }
|
2014-07-07 15:48:09 +02:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group python-highlight global WinSetOption filetype=(?!python).* %{ remove-highlighter window/python }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-07 15:48:09 +02:00
|
|
|
hook global WinSetOption filetype=(?!python).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window python-indent
|
2014-07-07 15:48:09 +02:00
|
|
|
}
|