1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:20:04 +08:00
SpaceVim/.SpaceVim.d/tasks.toml

31 lines
788 B
TOML
Raw Normal View History

[vader-test]
command = "make"
args = ['test']
isBackground = false
[vader-test.options.env]
VIM_BIN = 'nvim'
[generate-vim-doc]
command = "python"
args = ['-m', 'vimdoc', '.']
2021-03-31 19:47:05 +08:00
isBackground = true
2021-03-14 15:12:00 +08:00
[test_problemMatcher]
command = "echo"
args = ['.SpaceVim.d/tasks.toml:6:1 test error message']
isBackground = true
[test_problemMatcher.problemMatcher]
2021-03-31 19:47:05 +08:00
useStdout = true
2021-03-14 15:12:00 +08:00
errorformat = '%f:%l:%c\ %m'
[test_regexp]
command = "echo"
args = ['.SpaceVim.d/tasks.toml:12:1 test error message']
isBackground = true
2021-03-31 19:47:05 +08:00
[test_regexp.problemMatcher]
useStdout = true
2021-03-14 15:12:00 +08:00
[test_regexp.problemMatcher.pattern]
regexp = '\(.*\):\(\d\+\):\(\d\+\)\s\(\S.*\)'
file = 1
line = 2
column = 3
#severity = 4
message = 4