Skip to content

Latest commit

 

History

History
79 lines (45 loc) · 1.27 KB

CHANGELOG.md

File metadata and controls

79 lines (45 loc) · 1.27 KB

Change Log

All notable changes to the "pycharm-like-snippets" extension will be documented in this file.

Check Keep a Changelog for recommendations on how to structure this file.

v0.0.1

  • Initial release

v0.0.2

Added:

  • the wrap expression with print feature, which can be used through keybindings.

v0.0.3

Added:

  • extension icon.

v0.0.4

Added:

  • deff: Python function.
  • klass: Python class without inheritance.
  • klassi: Python class with inheritance.

v0.0.5

Oops, forgot to add async def snippets in v0.0.4.

Added:

  • adef: Python async function.

v0.0.6

Added:

  • forr: Python for range
  • afor: Python async for
  • openw: Python open file by with statement

v0.0.7

Added:

  • trye: python try except statement
  • tryf: python try except finally statement
  • tryl: python try except else statement
  • whl : python while loop statement

v0.0.8

Added:

  • wth: python with statement
  • witha: python with...as statement
  • awith: python async with statement

Modified:

  • iter to fori
  • itere to fore

V0.1.0

Added:

  • im: python import expression

  • ims: python import ... as expression

  • fim: python from ... import expression

  • fims: python from ... import as expression