franzheidl / atom-applescript

Applescript language support for Atom
6 stars 4 forks source link

Used insertText() instead of setText() to handle large scripts #14

Open elprohabro opened 5 years ago

elprohabro commented 5 years ago

Since setText() cuts all data larger than ~200 lines, I set editor.setText to "" and then added data from decompiler by insertText(). Please take a look, lines 44-45.

tbrek commented 5 years ago

Thanks for fixing the issue @elprohabro . I fixed that locally on my Atom instance. I wonder if that repo is still maintained though.