FontCycler
通过按一个键,快速在Sublime Text中轮换您喜欢的字体
详情
安装次数
- 总数 20K
- Win 12K
- Mac 3K
- Linux 4K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 1 | 1 | 2 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 3 | 2 | 0 | 0 | 0 | 1 | 2 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 3 | 2 | 1 | 0 | 0 | 3 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 |
Mac | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 |
README
FontCycler
通过按一个键,快速在Sublime Text中轮换您喜欢的字体。有些研究表明,这可以提高您的生产力。眨眼 眨眼
安装
最简单的安装方法是使用Package Control,可以在本站找到:https://packagecontrol.sublime.net.cn/installation
只需安装Package Control,然后在可用软件包列表中选择FontCycler。
使用方法
您可以按F10
键在不同字体之间切换,按Shift+F10
键逆向切换。
您需要在Preferences.sublime-settings
文件中设置fonts_list
键,并指定您想要轮换的字体列表。这些字体必须在系统上预先安装。
您可以指定仅字体名或具有属性font_face
、font_size
、line_padding_bottom
、line_padding_top
、word_wrap
和wrap_width
的对象。对象上必须有一个font_face
属性。
{
"fonts_list":
[
"Andale Mono",
"Consolas",
"Courier",
"Courier New",
"Envy Code R",
"Inconsolata",
"Lucida Console",
"Menlo",
"Meslo LG S",
"Meslo LG M",
"Meslo LG L",
"Monaco",
"ProFontX",
"Source Code Pro",
"Ubuntu Mono"
]
}
{
"fonts_list":
[
{
"font_face": "JetBrains Mono",
"font_size": 12,
"line_padding_bottom": 1,
"line_padding_top": 1,
"word_wrap": "auto",
"wrap_width": 80
},
{
"font_face": "Georgia",
"font_size": 15,
"line_padding_bottom": 3,
"line_padding_top": 3,
"word_wrap": true,
"wrap_width": 50
},
{
"font_face": "Verdana",
"font_size": 12,
"line_padding_bottom": 3,
"line_padding_top": 3,
"word_wrap": true,
"wrap_width": 50
},
{
"font_face": "Roboto",
"font_size": 13,
"line_padding_bottom": 2,
"line_padding_top": 2,
"word_wrap": true,
"wrap_width": 50
}
]
}
或者甚至是一种混合方法
{
"fonts_list":
[
"Consolas",
{
"font_face": "Courier",
"font_size": 12
},
{
"font_face": "Menlo",
"font_size": 10,
"line_padding_bottom": 1,
"line_padding_top": 0
}
]
}
配置
要更改下一个和上一个字体的快捷键,将next_font
和previous_font
命令分别绑定到所需的键上。