Determine whether the view shows an ignored file.
(self)
| 570 | ]).then(lambda x: bool(x)) |
| 571 | |
| 572 | def ignored(self): |
| 573 | """Determine whether the view shows an ignored file.""" |
| 574 | return self.execute_async([ |
| 575 | self._git_binary, |
| 576 | 'ls-files', '--other', '--exclude-standard', '-i', |
| 577 | self._git_path |
| 578 | ]).then(lambda x: bool(x)) |
| 579 | |
| 580 | def git_commits(self): |
| 581 | r"""Query all commits. |
no test coverage detected