From: Daniel Hahler Date: Sat, 11 May 2019 13:10:47 +0000 (+0200) Subject: Fix indent with pythonTodo at end of line (#124) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/68c34f9b2944a9ebf1f970d2d54b915806a121ad?ds=sidebyside;hp=68c34f9b2944a9ebf1f970d2d54b915806a121ad Fix indent with pythonTodo at end of line (#124) "pythonTodo" is contained in "pythonComment". Fix it by adding "pythonTodo" to the pattern to match special chars. An alternative might be using `synstack()` to get to "pythonComment" still, but this is not really necessary (and likely slower). ---