SublimeText3 / Python - 用于类无法正常工作的颜色主题(fg / bg)

时间:2015-10-13 01:48:35

标签: python themes sublimetext3

我在OSX El Capitan。我的.tmTheme

中有以下内容
<dict>
  <key>name</key>
  <string>Class name</string>
  <key>scope</key>
  <string>entity.name.class</string>
  <key>settings</key>
  <dict>
    <key>foreground</key>
    <string>#99FF99</string>
  </dict>
</dict>

为什么以下python代码中的foo不是#99FF99?

class foo(bar):
    def __init__(self):
        bar.__init__(self)
        print "foo"

我在entity.name.class看错了吗?这与El Capitan有什么关系吗?

1 个答案:

答案 0 :(得分:0)

上面的代码是由http://tmtheme-editor.herokuapp.com/创建并从.call()下载的。我尝试了几种变体,范围entity.name.type.class似乎是我的ST3版本的正确范围,而不是entity.name.class