mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
prevent potential issue
This commit is contained in:
parent
9b0eb19a71
commit
b8525da9fc
1 changed files with 3 additions and 1 deletions
|
@ -43,7 +43,9 @@ RL_DONE = None
|
||||||
RL_VARIABLE_VALUE = None
|
RL_VARIABLE_VALUE = None
|
||||||
_RL_STATE_DONE = 0x1000000
|
_RL_STATE_DONE = 0x1000000
|
||||||
_RL_STATE_ISEARCH = 0x0000080
|
_RL_STATE_ISEARCH = 0x0000080
|
||||||
_RL_PREV_CASE_SENSITIVE_COMPLETIONS = None
|
|
||||||
|
_RL_PREV_CASE_SENSITIVE_COMPLETIONS = 'to-be-set'
|
||||||
|
|
||||||
|
|
||||||
def setup_readline():
|
def setup_readline():
|
||||||
"""Sets up the readline module and completion suppression, if available."""
|
"""Sets up the readline module and completion suppression, if available."""
|
||||||
|
|
Loading…
Add table
Reference in a new issue