Auto-complete get
(self, file)
| 1683 | |
| 1684 | @CLIUtil.addcomplete(get) |
| 1685 | def get_complete(self, file): |
| 1686 | """ |
| 1687 | Auto-complete get |
| 1688 | """ |
| 1689 | if self._require_share(silent=True): |
| 1690 | return [] |
| 1691 | return self._fs_complete(file) |
| 1692 | |
| 1693 | @CLIUtil.addcommand(spaces=True, globsupport=True) |
| 1694 | def cat(self, file): |
nothing calls this directly
no test coverage detected