feat(ST2.EditorPackages): bump up all packages

- Refresh PackageCache with latest versions of everything
This commit is contained in:
Iristyle
2013-09-16 22:29:05 -04:00
parent 951be33c9e
commit 5ed4214a22
180 changed files with 9360 additions and 1211 deletions

View File

@@ -101,6 +101,8 @@ class FileDiffCommand(sublime_plugin.TextCommand):
self.diff_with_external(a, b, from_file, to_file)
if open_in_sublime:
# fix diffs
diffs = map(lambda line: (line and line[-1] == "\n") and line or line + "\n", diffs)
self.diff_in_sublime(diffs)
def diff_with_external(self, a, b, from_file=None, to_file=None):