##// END OF EJS Templates
Fix empty autosuggestions bugging out the end key...
Fix empty autosuggestions bugging out the end key The `nc.end_of_line(event)` line was never triggered. During writing this, the `Suggestion` class from prompt-toolkit has no `__bool__` implemented, which meant its objects always evaluate to `True`, even if `b.suggestion.text == ''`. The above resulted in the end key being unusable after an autosuggestion has been accepted by the user.
Blazej Michalik -
r27614:bc12e6dc
Show More
Name Size Modified Last Commit Author
/ IPython / terminal
pt_inputhooks
tests
__init__.py Loading ...
console.py Loading ...
debugger.py Loading ...
embed.py Loading ...
interactiveshell.py Loading ...
ipapp.py Loading ...
magics.py Loading ...
prompts.py Loading ...
ptutils.py Loading ...
shortcuts.py Loading ...