mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 07:14:48 +08:00
Show how to fallback to regular readline completion
This commit is contained in:
@@ -22,6 +22,16 @@ def setup_readline():
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
print('Install Jedi! No autocompletion otherwise.')
|
print('Install Jedi! No autocompletion otherwise.')
|
||||||
|
|
||||||
|
Alternately, you can fall back to regular readline completion with
|
||||||
|
something like::
|
||||||
|
|
||||||
|
try:
|
||||||
|
from jedi.utils import setup_readline
|
||||||
|
setup_readline()
|
||||||
|
except ImportError:
|
||||||
|
import readline, rlcompleter
|
||||||
|
readline.parse_and_bind("tab: complete")
|
||||||
|
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
import readline
|
import readline
|
||||||
|
|||||||
Reference in New Issue
Block a user