##// END OF EJS Templates
Skip some test which fails on 0.9
Skip some test which fails on 0.9

File last commit:

r23284:3ff1be2e
r23285:0724d578
Show More
update-completion-api.rst
9 lines | 603 B | text/x-rst | RstLexer
/ docs / source / whatsnew / pr / update-completion-api.rst

The completer Completion API has seen an overhaul. The old Completer.complete() API is waiting deprecation and will soon be replaced by the Completer.completions() one. While the Completer.complete() API was assuming completions would all replace the same range of text in the completed buffer, Completer.completions() does not. To smooth the transition we provide two utility methods regulrize... and stufff which can partially adapt between the old and new API. The new API is marked as "unstable" and can only be use explicitly when called from within a decorator we provide.