mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:40:04 +08:00
31 lines
788 B
TOML
31 lines
788 B
TOML
[vader-test]
|
|
command = "make"
|
|
args = ['test']
|
|
isBackground = false
|
|
[vader-test.options.env]
|
|
VIM_BIN = 'nvim'
|
|
[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
|