├── .python-version ├── CHANGELOG.md ├── LICENSE ├── README.md ├── WindowsContextMenu.sublime-settings ├── boot.py ├── menus └── Main.sublime-menu ├── messages.json ├── messages └── update_message.md └── plugin ├── __init__.py ├── commands ├── __init__.py └── wcm_toggle_open_with.py ├── constants.py ├── core.py ├── helpers.py ├── settings.py └── types.py /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/README.md -------------------------------------------------------------------------------- /WindowsContextMenu.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/WindowsContextMenu.sublime-settings -------------------------------------------------------------------------------- /boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/boot.py -------------------------------------------------------------------------------- /menus/Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/menus/Main.sublime-menu -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/messages.json -------------------------------------------------------------------------------- /messages/update_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/messages/update_message.md -------------------------------------------------------------------------------- /plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/__init__.py -------------------------------------------------------------------------------- /plugin/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/commands/wcm_toggle_open_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/commands/wcm_toggle_open_with.py -------------------------------------------------------------------------------- /plugin/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/constants.py -------------------------------------------------------------------------------- /plugin/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/core.py -------------------------------------------------------------------------------- /plugin/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/helpers.py -------------------------------------------------------------------------------- /plugin/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/settings.py -------------------------------------------------------------------------------- /plugin/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfcherng-sublime/ST-WindowsContextMenu/HEAD/plugin/types.py --------------------------------------------------------------------------------