AndreaCrotti / yasnippet-snippets

a collection of yasnippet snippets for many languages
GNU General Public License v3.0
1.15k stars 461 forks source link

ENH: python-mode/with-open #482

Closed quazgar closed 6 months ago

quazgar commented 8 months ago

New snippet for python-mode: wo expands to

with open("filename", encoding="utf-8", mode="w") as my_file:
  do_something