ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

VisualChanger

Vik Borges ST3

VisualChanger 允许您添加影响编辑器设置及其插件的配置文件

详细信息

安装

  • 总计 225
  • Win 167
  • Mac 35
  • Linux 23
2021年8月6日 2021年8月5日 2021年8月4日 2021年8月3日 2021年8月2日 2021年8月1日 2021年7月31日 2021年7月30日 2021年7月29日 2021年7月28日 2021年7月27日 2021年7月26日 2021年7月25日 2021年7月24日 2021年7月23日 2021年7月22日 2021年7月21日 2021年7月20日 2021年7月19日 2021年7月18日 2021年7月17日 2021年7月16日 2021年7月15日 2021年7月14日 2021年7月13日 2021年7月12日 2021年7月11日 2021年7月10日 2021年7月9日 2021年7月8日 2021年7月7日 2021年7月6日 2021年7月5日 2021年7月4日 2021年7月3日 2021年7月2日 2021年7月1日 2021年6月30日 2021年6月29日 2021年6月28日 2021年6月27日 2021年6月26日 2021年6月25日 2021年6月24日 2021年6月23日
Windows 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 1 1 0 0 0 0 0 0 1 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

读我指南

raw.​githubusercontent.​com

Sublime Text 3 - Visual Changer

VisualChanger 是一个简单的工具,允许您添加影响编辑器和其插件设置的配置文件。您可以通过命令面板或键盘绑定在配置文件之间进行切换。

安装

  • 在 Sublime 的包控制中搜索 VisualChanger

使用方法

Usage gif

  • VisualChanger 会在您的设置文件(首选项>设置)中添加一个示例配置
"visual_changer":
     {
        "profile_name_1":
        {
            "plugins_and_syntax-specific_settings":
            {
            },
            "visual_changer_test": "value 1"
        },
        "profile_name_2":
        {
            "plugins_and_syntax-specific_settings":
            {
            },
            "visual_changer_test": "value 2"
        },
        "profile_name_3":
        {
            "plugins_and_syntax-specific_settings":
            {
            },
            "visual_changer_test": "value 3"
        }
     }
  • 配置文件配置示例
    • 您可以针对编辑器、插件和语法特定设置进行操作。
    • plugins_and_syntax-specific_settings 中的键引用的是所使用的设置文件名,在此情况下,PlainTasks 是 PlainTasks 插件的设置文件名,而 Python 是 Python 语法特定设置文件的名称。
"visual_changer":{
        "day":
        {
            "color_scheme": "Packages/ayu/ayu-light.tmTheme",
            "original_color_scheme": "Packages/ayu/ayu-light.tmTheme",
            "theme": "ayu-light.sublime-theme",

            "plugins_and_syntax-specific_settings":
            {
                "PlainTasks":
                {
                    "color_scheme": "Packages/PlainTasks/tasks-solarized-light.hidden-tmTheme"
                },

                "Python":{
                    "font_size": 10
                }
            },
        },
        "night":
        {
            "color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
            "original_color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
            "theme": "ayu-mirage.sublime-theme",

            "plugins_and_syntax-specific_settings":
            {
                "PlainTasks":
                {
                    "color_scheme": "Packages/PlainTasks/tasks-eighties-colored.hidden-tmTheme"
                },

                "Python":{
                    "font_size": 15
                }
            }
        }
    }
  • 您可以通过命令面板(Ctrl+Shift+p)或使用键盘绑定在配置文件之间切换

###### 设置键绑定

{ "keys": ["ctrl+alt+d"], "command": "visual_changer", "args": {"profile_chosen": "day"} }