Macro to disable slow features on big files

Could you provide a macro that would run on file open to disable slow features on big files?
Like track changes, spell checking, syntax checking.
And shoot a notification at the end :wink:

I assume this is directed at the community? :slight_smile:

Here’s what Komodo does so far: https://github.com/Komodo/KomodoEdit/blob/master/src/chrome/komodo/content/views.p.js#L611

Now you just need to turn off track changes in a file that you’re opening.
Note that @mitchell already confirmed that spell checking won’t effect a large file as it only checks words in view.
Syntax checking is not enabled on text files so there is no need to turn it off.

  • Carey