diff options
| author | mryouse | 2022-07-11 02:27:05 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-11 02:27:05 +0000 |
| commit | b71f1da5b5cf1c0b3f7f11759d73976856caec36 (patch) | |
| tree | 9326df00d600a303d63fda9fe5f4b6bc8fca8a1b /neb.py | |
| parent | c44f647461cde3be5ee431ad32bbd3f238266db6 (diff) | |
change readline delimiters to just spaces
Diffstat (limited to 'neb.py')
| -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() |
