Skip to content

Instantly share code, notes, and snippets.

@EngineerSmith
Created March 24, 2022 21:53
Show Gist options
  • Save EngineerSmith/8e9073bb991c10cbb6fcd9474e3f22d4 to your computer and use it in GitHub Desktop.
Save EngineerSmith/8e9073bb991c10cbb6fcd9474e3f22d4 to your computer and use it in GitHub Desktop.
appleCake.enable() -- enable everything
appleCake.enable("all")
appleCake.enable("none") -- disable everything
appleCake.enable("profile") -- only enable profiles
appleCake.enable("mark") -- only enable marks
appleCake.enable("counter") -- only enable counters
appleCake.enable(appleCake.enableLevels["profile"] + appleCake.enableLevels["mark"]) -- enable only profiles and marks, disable counters
appleCake.enable(appleCake.enableLebels["all"] - appleCake.enableLevels["counter"]) -- same as above, disable only counters
appleCake.enable(appleCake.enableLevels["profile"] + appleCake.enableLevels["counter"]) -- enable only profiles and counters, disable marks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment