轮换器
Sublime Text 2插件 - 使用鼠标滚轮更改数字和列表
详细信息
安装次数
- 总计数 326
- Win 169
- Mac 70
- Linux 87
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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
说明
WheelChanger (Sublime Text 2和3插件)
使用WheelChanger,您可以(如Google Chrome CSS编辑器那样)通过鼠标滚轮更改数字和列表。
安装
推荐的方式是使用PackageControll软件包。
使用Sublime Package Control
这是大多数用户的首选和最简单的方式。
- 安装Package Control http://wbond.net/sublime_packages/package_control
- 打开Package Control
- 选择'安装包'
- 查找并选择'WheelChanger'
使用Git
如果您喜欢使用HEAD工作,您可以在包目录中找到WheelChanger。
- 前往您的包目录,您可以通过使用菜单项'首选项' -> '浏览包...'找到包目录。
- 在包目录内,使用以下命令克隆WheelChanger仓库:git clone https://github.com/matiaspub/WheelChanger.git WheelChanger
手动下载
- 使用GitHub .zip下载选项下载文件。
- 解压文件并将文件夹重命名为类似WheelChanger的名称。
- 将文件夹复制到您的Sublime Text 2或3包目录。
配置
您可以添加自列表,但必须记住:列表中的每个字符串都必须是唯一的。
{
// lists of change words, words must be unique for all lists
"lists": [
["true","false"],
["True","False"],
["TRUE","FALSE"],
["inherit","pointer","crosshair","progress","help","move","wait"],
["bold","normal"],
["hidden","scroll","visible"],
["inside","outside"],
["capitalize","lowercase","uppercase","none"],
["absolute","relative","fixed","static"]
],
// if list ending - start anew
"anew": true,
// pattern for decimalic substrings
"decimal_pattern": "[+-]?\\d+[.\\d]*"
}
快捷键映射
它包含重定义标准键(如ctrl++(增加字体大小)),但您可以修改它们。
[
{ "keys": ["ctrl++"], "command": "wheel_changer" },
{ "keys": ["ctrl+="], "command": "wheel_changer" },
{ "keys": ["ctrl+keypad_plus"], "command": "wheel_changer" },
{ "keys": ["ctrl+-"], "command": "wheel_changer", "args": {"back": true} },
{ "keys": ["ctrl+keypad_minus"], "command": "wheel_changer", "args": {"back": true} },
{ "keys": ["ctrl+shift++"], "command": "wheel_changer", "args": {"step": 10} },
{ "keys": ["ctrl+shift+="], "command": "wheel_changer", "args": {"step": 10} },
{ "keys": ["ctrl+shift+keypad_plus"], "command": "wheel_changer", "args": {"step": 10} },
{ "keys": ["ctrl+shift+-"], "command": "wheel_changer", "args": {"back": true, "step": 10} },
{ "keys": ["ctrl+shift+keypad_minus"], "command": "wheel_changer", "args": {"back": true, "step": 10} },
{ "keys": ["ctrl+shift+alt++"], "command": "wheel_changer", "args": {"step": 100} },
{ "keys": ["ctrl+shift+alt+="], "command": "wheel_changer", "args": {"step": 100} },
{ "keys": ["ctrl+shift+alt+keypad_plus"], "command": "wheel_changer", "args": {"step": 100} },
{ "keys": ["ctrl+shift+alt+-"], "command": "wheel_changer", "args": {"back": true, "step": 100} },
{ "keys": ["ctrl+shift+alt+keypad_minus"], "command": "wheel_changer", "args": {"back": true, "step": 100} }
]
鼠标映射
它包含重定义标准键(如以下几个代码行的第一行),但您可以修改它们。
[
{ "button": "scroll_up", "modifiers": ["ctrl"], "command": "wheel_changer" },
{ "button": "scroll_down", "modifiers": ["ctrl"], "command": "wheel_changer", "args": {"back": true} },
{ "button": "scroll_up", "modifiers": ["ctrl","shift"], "command": "wheel_changer", "args": {"step": 10} },
{ "button": "scroll_down", "modifiers": ["ctrl","shift"], "command": "wheel_changer", "args": {"back": true, "step": 10} },
{ "button": "scroll_up", "modifiers": ["ctrl","shift","alt"], "command": "wheel_changer", "args": {"step": 100} },
{ "button": "scroll_down", "modifiers": ["ctrl","shift","alt"], "command": "wheel_changer", "args": {"back": true, "step": 100} }
]