sublime-text-git
sublime-text-git copied to clipboard
Error loading syntax file
Installed into Sublime 2.0.2 (Windows 7). First time I issued Git Blame I got this error.

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.