rDr4g0n/JsDebuggr

In order for plugin to work it's requiring that the JsDebugger.py file be re-saved each time Sublime Text is re-opened

Closed this issue · 1 comments

Upon opening a file outputs the following:
Traceback (most recent call last):
File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 207, in on_load
callback.on_load(v)
File "/Users/davelaflam/Library/Application Support/Sublime Text 3/Packages/JsDebuggr/JsDebuggr.py", line 501, in on_load
if not should_track_view(view):
File "/Users/davelaflam/Library/Application Support/Sublime Text 3/Packages/JsDebuggr/JsDebuggr.py", line 66, in should_track_view
if not extension in file_type_list:
TypeError: argument of type 'NoneType' is not utterable

Clicking in the js file outputs this:
Traceback (most recent call last):
File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 287, in on_selection_modified
callback.on_selection_modified(v)
File "/Users/davelaflam/Library/Application Support/Sublime Text 3/Packages/JsDebuggr/JsDebuggr.py", line 543, in on_selection_modified
if not should_track_view(view):
File "/Users/davelaflam/Library/Application Support/Sublime Text 3/Packages/JsDebuggr/JsDebuggr.py", line 66, in should_track_view
if not extension in file_type_list:
TypeError: argument of type 'NoneType' is not utterable

Selecting something like Add/Remove breakpoint from context menu will output this:
Traceback (most recent call last):
File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 549, in run_
return self.run(edit)
File "/Users/davelaflam/Library/Application Support/Sublime Text 3/Packages/JsDebuggr/JsDebuggr.py", line 308, in run
if not should_track_view(self.view):
File "/Users/davelaflam/Library/Application Support/Sublime Text 3/Packages/JsDebuggr/JsDebuggr.py", line 66, in should_track_view
if not extension in file_type_list:
TypeError: argument of type 'NoneType' is not iterable

Ahh, just what I thought. this is a duplicate of #22 . It's at the top of my list of things to fix. Thanks!