How to remove a package in sublime text 2

前端 未结 7 1453
傲寒
傲寒 2021-01-29 19:50

I would like to remove and/or deactivate the Emmet package in Sublime Text 2.

Should I just remove the Emmet directory or what is the typical w

7条回答
  •  醉话见心
    2021-01-29 20:21

    If you installed with package control, search for "Package Control: Remove Package" in the command palette (accessed with Ctrl+Shift+P). Otherwise you can just remove the Emmet directory.

    If you wish to use a custom caption to access commands, create Default.sublime-commands in your User folder. Then insert something similar to the following.

    [
        {
            "caption": "Package Control: Uninstall Package",
            "command": "remove_package"
        }
    ]
    

    Of course, you can customize the command and caption as you see fit.

提交回复
热议问题