nathanjovin

Results 3 comments of nathanjovin

@mbirth: I had the same issue. You need to include your remote_path setup near line 469 where you see this: ``` xdebug_current = show_file(self.view.window(), child.getAttribute('filename')) ``` the chile.getAttribute... needs to...

Checked the console and was getting "AttributeError: 'NoneType' object has no attribute 'encode'" on line 469 of Xdebug.py. I did some troubleshooting and found that the plugin was attempting to...

I worked around this (on Windows) by doing this: ``` python def uri(self): #NJ - NEXT LINE IS ORIGINAL #return 'file://' + os.path.realpath(self.view.file_name()) tmp = self.view.file_name() discard, sep, short_file =...