(self, file_name)
| 327 | self.log('diff_done', result) |
| 328 | |
| 329 | def git_diff_command(self, file_name): |
| 330 | vcs_options = self.settings.get('vcs_options', {}).get('git') or ['--no-color', '--no-ext-diff'] |
| 331 | return [get_user_command('git') or 'git', 'diff'] + vcs_options + ['--', file_name] |
| 332 | |
| 333 | def svn_diff_command(self, file_name): |
| 334 | params = [get_user_command('svn') or 'svn', 'diff'] |
nothing calls this directly
no test coverage detected