How to remove a package in sublime text 2

前端 未结 7 1452
傲寒
傲寒 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:19

    Just wanted to add, that after you remove the package in question you might also need to check to see if it's listed in the list of packages in the following area and manually remove its listing:

    Preferences>Package Settings>Package Control>Settings - User

    {
        "auto_upgrade_last_run": null,
        "installed_packages":
        [
            "AdvancedNewFile",
            "Emmet",
            "Package Control",
            "SideBarEnhancements",
            "Sublimerge"
        ]
    }
    

    In my instance, my trial period for "Sublimerge" had run out and I would get a popup every time I would start Sublime Text 2 saying:

    "The package specified, Sublimerge, is not available"

    I would have to close the event window out before being able to do anything in ST2.

    But in my case, even after successfully removing the package through package control, I still received a event window popup message telling me "Sublimerge" wasn't available. This didn't make any sense as I had successfully removed the package.

    It wasn't until I found this "auto_upgrade_last_run" file and manually removed the "Sublimerge" entry and saved my edit, did the message go away.

提交回复
热议问题