Per-token font size in Sublime Text 2

六眼飞鱼酱① 提交于 2019-11-28 00:26:10

Unfortunately, this is not possible, as there are no directives in the API or in color schemes for dealing with font size at that level of granularity.

However, it is possible to provide additional highlighting to your color scheme (.tmTheme file) so that function definitions stand out. It looks like you're using Monokai, so open Packages/Color Scheme - Default/Monokai.tmTheme and add the following to the end, just before the final </array>:

        <dict>
            <key>name</key>
            <string>Function definition</string>
            <key>scope</key>
            <string>meta.function</string>
            <key>settings</key>
            <dict>
                <key>background</key>
                <string>#000080</string>
            </dict>
        </dict>

This will highlight your function definition lines in a dark blue:

It also works for alternate function definition syntaxes:

Good luck!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!