diff --git a/jedi_vim.py b/jedi_vim.py index ca96127..f0393f2 100644 --- a/jedi_vim.py +++ b/jedi_vim.py @@ -335,7 +335,8 @@ def clear_call_signatures(): # 1. Search for a line with a call signature and save the appended # characters # 2. Actually replace the line and redo the status quo. - py_regex = r'%sjedi=([0-9]+), (.*?)%s.*?%sjedi%s'.replace('%s', e) + py_regex = r'%sjedi=([0-9]+), (.*?)%s.*?%sjedi%s'.replace( + '%s', re.escape(e)) for i, line in enumerate(vim.current.buffer): match = re.search(py_regex, line) if match is not None: