diff options
| -rw-r--r-- | neb.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -48,6 +48,7 @@ def repl(): readline.parse_and_bind("tab: complete") cmp = NebCompleter(env.environment.keys()) readline.set_completer(cmp.complete) + readline.set_completer_delims(" ") print("### neb :)(:") print("version: < 0") @@ -84,6 +85,7 @@ def run_file(filename): readline.parse_and_bind("tab: complete") cmp = NebCompleter(env.environment.keys()) readline.set_completer(cmp.complete) + readline.set_completer_delims(" ") with open(filename, "r") as fil: data = fil.read() |
