-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompleter.py
43 lines (33 loc) · 1.02 KB
/
completer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import readline
import os
import commands
class SimpleCompleter:
"""
a simple class for tab completion.
"borrowed" from https://pymotw.com/2/readline/
converted to python3 syntax, however
"""
def __init__(self, options):
self.options = sorted(options)
return
def complete(self, text, state):
response = None
if state == 0:
# This is the first time for this text, so build a match list.
if text:
self.matches = [
s for s in self.options if s and s.startswith(text)
]
else:
self.matches = self.options[:]
# Return the state'th item from the match list,
# if we have that many.
try:
response = self.matches[state]
except IndexError:
response = None
return response
def init():
readline.set_completer(SimpleCompleter(os.listdir() + commands.__all__
).complete)
readline.parse_and_bind('tab: complete')