We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_comp_cmd_pylint__message_ids
1 parent 80da3de commit a4294f3Copy full SHA for a4294f3
completions/pylint
@@ -10,10 +10,10 @@ _comp_cmd_pylint__message_ids()
10
# again later?
11
local msgs="$(
12
set -o pipefail
13
- ${1:-pylint} --list-msgs-enabled 2>/dev/null |
+ "$1" --list-msgs-enabled 2>/dev/null |
14
command sed -ne "$filter" |
15
command sed -ne 's/^[[:space:]]\{1,\}\([a-z-]\{6,\}\).*/\1/p' ||
16
- ${1:-pylint} --list-msgs 2>/dev/null |
+ "$1" --list-msgs 2>/dev/null |
17
command sed -ne 's/^:\([a-z-]\{6,\}\).*/\1/p'
18
)"
19
_comp_delimited , -W "$msgs"
0 commit comments