突出显示函数调用Sublime Text(python)

时间:2012-08-15 23:37:58

标签: python syntax-highlighting textmate sublimetext2 sublimetext

我希望能够找到一种方法,用不同的颜色在python中为函数调用的名称着色。此行为是针对C语言而发现的,但不适用于Python。这就是我认为应该可以做到的原因。

编辑:

我不是在寻找特定于Color Scheme的语法,我宁愿寻找我必须添加到Python.tmLanguage的特定行。

在尝试了jdi的建议后,我最终得到了这个:

enter image description here

我想要的只是阵列的颜色不同,而不是括号,对象调用方法等......

2 个答案:

答案 0 :(得分:4)

您需要编辑现有主题,或复制一个,修改它,然后设置为...然后您可以在底部添加这样的内容:

<dict>
    <key>name</key>
    <string>Function call</string>
    <key>scope</key>
    <string>meta.function-call - punctuation - meta.function-call.arguments</string>
    <key>settings</key>
    <dict>
        <key>foreground</key>
        <string>#FF0000</string>
    </dict>
</dict>

这采用函数调用模式,并减去调用括号的子集,只留下名称。

默认主题位于:Packages/Color Scheme - Default

Highlighted Text example

答案 1 :(得分:1)

这就是我到目前为止它并不完美但有点有用:

我从每个ST2中捆绑的C.tmLanguage文件中获取了这一部分,并添加了一些内容,以便与Python.tmLanguage文件中定义的Python中的一些默认函数不同:

    <dict>
        <key>captures</key>
        <dict>
            <key>1</key>
            <dict>
                <key>name</key>
                <string>punctuation.whitespace.function-call.leading.python</string>
            </dict>
            <key>2</key>
            <dict>
                <key>name</key>
                <string>support.function.any-method.python</string>
            </dict>
            <key>3</key>
            <dict>
                <key>name</key>
                <string>punctuation.definition.parameters.python</string>
            </dict>
        </dict>
        <key>match</key>
        <string>(?x) (?: (?= \s )  (?:(?&lt;=else|new|return) | (?&lt;!\w)) (\s+))?
(\b
    (?!(while|for|do|if|else|switch|catch|enumerate|return|r?iterate|
        __import__|all|abs|any|apply|callable|chr|cmp|coerce|compile|delattr|dir|
        divmod|eval|execfile|filter|getattr|globals|hasattr|hash|hex|id|
        input|intern|isinstance|issubclass|iter|len|locals|map|max|min|oct|
        ord|pow|range|raw_input|reduce|reload|repr|round|setattr|sorted|
        sum|unichr|vars|zip|basestring|bool|buffer|classmethod|complex|dict|enumerate|file|
        float|frozenset|int|list|long|object|open|property|reversed|set|
        slice|staticmethod|str|super|tuple|type|unicode|xrange|
        abs|add|and|call|cmp|coerce|complex|contains|del|delattr|
        delete|delitem|delslice|div|divmod|enter|eq|exit|float|
        floordiv|ge|get|getattr|getattribute|getitem|getslice|gt|
        hash|hex|iadd|iand|idiv|ifloordiv|ilshift|imod|imul|init|
        int|invert|ior|ipow|irshift|isub|iter|itruediv|ixor|le|len|
        long|lshift|lt|mod|mul|ne|neg|new|nonzero|oct|or|pos|pow|
        radd|rand|rdiv|rdivmod|repr|rfloordiv|rlshift|rmod|rmul|ror|
        rpow|rrshift|rshift|rsub|rtruediv|rxor|set|setattr|setitem|
        setslice|str|sub|truediv|unicode|xor
    )\s*\()(?:(?!NS)[A-Za-z_][A-Za-z0-9_]*+\b | :: )++                  # actual name
)
 \s*(\()</string>
        <key>name</key>
        <string>meta.function-call.python</string>
    </dict>

这就是使用Monokai Bright主题的输出效果,尽管它非常微妙,您可以注意到open的格式与array不同。

enter image description here