From ef0f39b780ca3d8eff5b3a1e327681dc7d97f0ae Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Fri, 5 Apr 2019 17:40:07 +0100 Subject: [PATCH] Make add ! to `function PythonIndent` --- indent/python.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indent/python.vim b/indent/python.vim index d79a6a7..119f721 100644 --- a/indent/python.vim +++ b/indent/python.vim @@ -16,7 +16,7 @@ setlocal indentkeys+=<:>,=elif,=except " Derived from the default GetPythonIndent removing deliberate use of invalid " expressions which show up with 'set debug=msg,throw', also remove the indent " config options. -function PythonIndent(lnum) +function! PythonIndent(lnum) " If this line is explicitly joined: If the previous line was also joined, " line it up with that one, otherwise add two 'shiftwidth' if getline(a:lnum - 1) =~# '\\$'