Fanhuaji / Sublime-Fanhuaji

繁化姬的 Sublime Text 插件
https://packagecontrol.io/packages/Fanhuaji
MIT License
68 stars 5 forks source link

Key bindings please? #1

Closed Endermanbugzjfc closed 4 years ago

jfcherng commented 4 years ago

If you prefer the "quick panel" way just like what it is in the command palette:

image (ST 4083 preview)

{ "keys": ["alt+q"], "command": "fanhuaji_convert_panel" },

If you prefer converting selected text with predefined configuration without any prompt:

https://github.com/Fanhuaji/Sublime-Fanhuaji/blob/141f1bac1f64a8c440f51f57a0f8d3c1911d599d/menus/Default.sublime-commands#L4-L9

{
    "keys": ["alt+q"],
    "command": "fanhuaji_convert",
    "args": {
        "args": {
            "converter": "Simplified",
        },
    },
},
Endermanbugzjfc commented 4 years ago

Got it, thank you!