mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:10:04 +08:00
25 lines
663 B
TOML
25 lines
663 B
TOML
[generate-vim-doc]
|
|
command = "python"
|
|
args = ['-m', 'vimdoc', '.']
|
|
isBackground = true
|
|
[test_problemMatcher]
|
|
command = "echo"
|
|
args = ['.SpaceVim.d/tasks.toml:6:1 test error message']
|
|
isBackground = true
|
|
[test_problemMatcher.problemMatcher]
|
|
useStdout = true
|
|
errorformat = '%f:%l:%c\ %m'
|
|
[test_regexp]
|
|
command = "echo"
|
|
args = ['.SpaceVim.d/tasks.toml:12:1 test error message']
|
|
isBackground = true
|
|
[test_regexp.problemMatcher]
|
|
useStdout = true
|
|
[test_regexp.problemMatcher.pattern]
|
|
regexp = '\(.*\):\(\d\+\):\(\d\+\)\s\(\S.*\)'
|
|
file = 1
|
|
line = 2
|
|
column = 3
|
|
#severity = 4
|
|
message = 4
|