Skip to content

Commit

Permalink
Добавил синтаксис для вывода в консоли Sublime
Browse files Browse the repository at this point in the history
  • Loading branch information
maximzakharov committed Mar 14, 2024
1 parent 2eb26cd commit d628e36
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions Output/Output.sublime-syntax
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
%YAML 1.2
---
name: Make Output
hidden: true
scope: source.build_output
contexts:
main:
- match: '^(..[^:\n]*):([0-9]+):?([0-9]+)?:? '
scope: entity.name.filename
- match: '.*done$'
scope: message.done
- match: 'error: .*'
scope: message.error
- match: 'warning: .*'
scope: message.warning
- match: '\b(note): '
scope: message.note
- match: '^Checking.*'
scope: message.checking
- match: '^\[.+\]$'
scope: comment
- match: '^.*:PASS.*$'
scope: test_passed
- match: '^.*:FAIL.*$'
scope: test_failed
- match: '^(?!100%).* tests passed.*'
scope: tests_failed
- match: '^.*100%\s*tests\s*passed.*$'
scope: tests_ok







0 comments on commit d628e36

Please sign in to comment.