Skip to content

Instantly share code, notes, and snippets.

@blunket
Last active July 29, 2024 22:07
Show Gist options
  • Save blunket/e041565ef50b925ea68f29eb495e4433 to your computer and use it in GitHub Desktop.
Save blunket/e041565ef50b925ea68f29eb495e4433 to your computer and use it in GitHub Desktop.
Sublime Text 3 - Toggle Vintage Mode Plugin
import sublime
class ToggleVintageCommand(sublime_plugin.TextCommand):
def run(self, edit):
settings = sublime.load_settings('Preferences.sublime-settings')
ignored = settings.get("ignored_packages")
if "Vintage" in ignored:
ignored.remove("Vintage")
else:
ignored.append("Vintage")
settings.set("ignored_packages", ignored)
@azye
Copy link

azye commented Mar 18, 2021

this needs import sublime_plugin at the top of the script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment