diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/impure/rdstdin.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/impure/rdstdin.nim b/lib/impure/rdstdin.nim index a1f0291bf..003cfa3d1 100644 --- a/lib/impure/rdstdin.nim +++ b/lib/impure/rdstdin.nim @@ -32,5 +32,7 @@ else: # initialization: # disable auto-complete: - discard readline.bind_key('\t'.ord, readline.abort) + proc doNothing(a, b: cint): cint {.cdecl, procvar.} = nil + + discard readline.bind_key('\t'.ord, doNothing) |