This extension provides extra completion support for Python in VSCode.
Allowing to use some postfix to wrap a value. Inspired from other editors.
-
Functions (
foo.xxx => xxx(foo))- - - - - - - - printrepridhashlenabssumroundstrintfloatbooltypelisttuplereversedsetenumerateiternextaiteranextcallablechrorddirminmaxvarsisinstanceissubclasszipgetattrhasattrsetattrdelattrdivmodpow -
Keywords (
foo.xxx => xxx foo)assertawaitdelraisereturnyield
-
Others
if __name__ == "__main__": => if __name__ == "__main__": main()foreach => for i in ...:forenum => for i, elem in enumerate(...):aforeach => async for i in ...:comp => expr for i in ...acomp => expr async for i in ...def => def func_name(*args, **kwds)adef => async def func_name(*args, **kwds)for => for i in itafor => async for i in itwith => with contextawith => async with context
Providing a shortcut for re-exporting.
- VSCode >= 1.74
This extension contributes the following settings:
- No settings available.




