From 9c93e79a6654d0b42bd0549e4947a8d2be038393 Mon Sep 17 00:00:00 2001 From: John Sivak Date: Sat, 25 Feb 2017 13:23:36 -0500 Subject: [PATCH] Add display of the pylint symbol name for the msg_id. --- ale_linters/python/pylint.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index ada1bfa..88dc4b4 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -14,7 +14,7 @@ endfunction function! ale_linters#python#pylint#GetCommand(buffer) abort return ale_linters#python#pylint#GetExecutable(a:buffer) \ . ' ' . g:ale_python_pylint_options - \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n' + \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n' \ . ' %t' endfunction