X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3f68af9813542a5e277b7a51b316644241c372d7..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/tests/data/fmtskip4.py?ds=sidebyside diff --git a/.vim/bundle/black/tests/data/fmtskip4.py b/.vim/bundle/black/tests/data/fmtskip4.py new file mode 100644 index 0000000..aadd77d --- /dev/null +++ b/.vim/bundle/black/tests/data/fmtskip4.py @@ -0,0 +1,13 @@ +a = 2 +# fmt: skip +l = [1, 2, 3,] + +# output + +a = 2 +# fmt: skip +l = [ + 1, + 2, + 3, +] \ No newline at end of file