bradsokol / VcsGutter

A plugin for Sublime Text 2 and 3 to show diffs from Git, Mercurial, or Subversion in the editor's gutter.
MIT License
95 stars 20 forks source link

Fix reading output from hg #18

Closed delicb closed 11 years ago

delicb commented 11 years ago

On my computer (Windows 7, Sublime Text 3047) when opening file in mercurial repository all lines where marked as 'added'. It turns out that when running hg its proc.stdout.read(). This commit fixes it by redirecting stderr too.

bradsokol commented 11 years ago

Thanks!