heyblinken
heyblinken
Here is the actual error output: Traceback (most recent call last): File "ansi in C:\Program Files\Sublime Text 3\Data\Installed Packages\ANSIescape.sublime-package", line 160, in File "ansi in C:\Program Files\Sublime Text 3\Data\Installed Packages\ANSIescape.sublime-package",...
Actually, looking at the error again, i think the view is valid, but view.window() == None. So we would something like this: if( view == None or view.window() == None...
Yeah, i think the console's view is one of the views where view can be valid, but it doesn't reference a valid window(). I don't know if that's the view...
Wrong again... I did a test using the following code: ``` print( getattr( view, "run_command", None)) print( getattr( view, "window", None) ) print( getattr( view.window(), "run_command", None) ) ``` and...
I've tried several more attempts at catching this issue and it appears that the view object is either getting corrupt or its not valid in the first place since its...
I've pulled down your latest changes and will test them. My setup is complicated and i wasn't able to produce this bug very often. It would occasionally occur when i...
got it to happen again... i wondering if you should be passing view into detect_syntax_change as jfcherng mentioned earlier. i don't know if settings()view_on_change() was meant to tell you what...
Ok, i added some traceback debugging to detect_syntax_check and discovered 3 things: 1. i have Bracket Highlighter plugin installed, and so that triggers detect_syntax_check like crazy when you focus a...
I pulled down 1e55d9d6f and still had the same errors. Looking at on_close changes, i think you need to change it to on_pre_close() so that 'view' is still valid. I...
I changed it to on_pre_close() and still am having the same problem. Likewise, i also am noticing similar errors when i open up multiple projects... I'm starting to wonder if...