##// END OF EJS Templates
Fix autosuggestions in multi-line mode, vi command mode delay (#13991)...
Fix autosuggestions in multi-line mode, vi command mode delay (#13991) Fixes #13970. Relates to https://github.com/ipython/ipython/issues/13443. Documents https://github.com/ipython/ipython/pull/12603 with a new `emacs_like_insert_mode` filter alias.

File last commit:

r15516:43a46eb6
r28198:4e7b9408 merge
Show More
test_decorators.py
9 lines | 170 B | text/x-python | PythonLexer
Thomas Kluyver
Add tests for things in utils
r15516 from IPython.utils import decorators
def test_flag_calls():
@decorators.flag_calls
def f():
pass
assert not f.called
f()
assert f.called