summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/python-mode/with-open
blob: 77c7210e7742d505dbb0bd11f23157f5c97c8624 (plain)
1
2
3
4
5
6
# -*- mode: snippet -*-
# name: with-open
# key: wo
# --
with open(${1:"filename"}${2:, encoding="${3:utf-8}"}${4:, mode="${5:w}"}) as ${6:myfile}:
    $0