From: Justin Prieto Date: Mon, 9 Nov 2020 19:58:23 +0000 (-0500) Subject: Correctly handle inline tabs in docstrings (#1810) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/1d8b4d766d912c7b9e91fa885419730c334345ef?hp=1d8b4d766d912c7b9e91fa885419730c334345ef Correctly handle inline tabs in docstrings (#1810) The `fix_docstring` function expanded all tabs, which caused a difference in the AST representation when those tabs were inline and not leading. This changes the function to only expand leading tabs so inline tabs are preserved. Fixes #1601. ---