sublime-text-git icon indicating copy to clipboard operation
sublime-text-git copied to clipboard

Error loading syntax file

Open dlidstrom opened this issue 9 years ago • 1 comments

Installed into Sublime 2.0.2 (Windows 7). First time I issued Git Blame I got this error. screen shot 2016-10-26 at 08 37 54

dlidstrom avatar Oct 26 '16 06:10 dlidstrom

I got this issue also, and I figured out how to fix it. In __init__.py, you need to make a change in find_plugin_directory(). Change if __file__.startswith('./') to if __file__.startswith('./') or __file__.startswith('.\\'), because on Windows __file__ returns backslashes.

bretsky avatar Nov 20 '16 07:11 bretsky