From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Wed, 26 Aug 2020 22:17:59 +0000 (-0400) Subject: Fix multiline docstring quote normalization X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/7fe19fac5bccc08dbcf21c293ab50f1fcda7716f?ds=sidebyside;hp=7fe19fac5bccc08dbcf21c293ab50f1fcda7716f Fix multiline docstring quote normalization The quotes of multiline docstrings are now only normalized when string normalization is off, instead of the string normalization setting being ignored and the quotes being *always* normalized. I had to make a new test case and data file since the current pair for docstrings only worked when there is no formatting difference between the formatting results with string normalization on and off. I needed to add tests for when there *are* differences between the two. So I split test_docstring's test code when string normalization is disabled into a new test case along with a new data file. ---