(self, file_name)
| 351 | return [get_user_command('bzr') or 'bzr', 'diff'] + vcs_options + [file_name] |
| 352 | |
| 353 | def hg_diff_command(self, file_name): |
| 354 | vcs_options = self.settings.get('vcs_options', {}).get('hg', []) |
| 355 | return [get_user_command('hg') or 'hg', 'diff'] + vcs_options + [file_name] |
| 356 | |
| 357 | def tf_diff_command(self, file_name): |
| 358 | vcs_options = self.settings.get('vcs_options', {}).get('tf') or ['-format:unified'] |
nothing calls this directly
no test coverage detected