The git diff algorithm command line argument from settings. Returns: string: One of (--minimal, --patience, --histogram) or None if setting is invalid.
(self)
| 167 | |
| 168 | @property |
| 169 | def diff_algorithm(self): |
| 170 | """The git diff algorithm command line argument from settings. |
| 171 | |
| 172 | Returns: |
| 173 | string: |
| 174 | One of (--minimal, --patience, --histogram) |
| 175 | or None if setting is invalid. |
| 176 | """ |
| 177 | return self._DIFF_ALGORITHM.get(self.get('diff_algorithm')) |
| 178 | |
| 179 | |
| 180 | class GitGutterOpenFileCommand(sublime_plugin.ApplicationCommand): |