mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
more
This commit is contained in:
parent
8b3c86905f
commit
087d8216c3
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ class Completer(object):
|
|||
return set()
|
||||
cmds = set()
|
||||
for d in path:
|
||||
print(d)
|
||||
cmds |= {s for s in os.listdir(d) if s.startswith(cmd)}
|
||||
if os.path.isdir(d):
|
||||
cmds |= {s for s in os.listdir(d) if s.startswith(cmd)}
|
||||
return cmds
|
||||
|
||||
def _load_bash_complete_funcs(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue