Skip to content

Commit 8ca628e

Browse files
committed
enh(nvim): add highlight to error
1 parent 21a9674 commit 8ca628e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lua/xcodebase/pickers.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ local finder = require("telescope.finders").new_table
55
local picker = require("telescope.pickers").new
66
local sorter = require("telescope.config").values.generic_sorter
77
local maker = require("telescope.pickers.entry_display").create
8-
local actions = require "worktree.actions"
98
local xcodebase = require "xcodebase"
109

1110
--[[

syntax/xcodebuildlog.vim

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,21 @@ syn match Operations "\(Executing\|Compiling\|Processing\|Emitting\|Compilin
1010
syn match Entitlement "Entitlement"
1111
syn match Package "Packaging"
1212
syn region Scope display oneline start='^\[' end='\]'
13-
syn region Success display oneline start='^\[Succeed\]$' end='$'
13+
syn region LogSuccess display oneline start='^\[Succeed\]$' end='$'
14+
syn match LogError "^\(\[Error\]\)"
1415
syn match Target "`\(\w.*\)`"
1516
syn match FilePath "`\(\/.*\)`"
1617
syn region Sep display oneline start='-' end='-$'
1718

1819
hi def link Scope Label
19-
hi def link Success healthSuccess
20+
hi def link LogSuccess healthSuccess
2021
hi def link Operations Function
2122
hi def link Entitlement Comment
2223
hi def link Package Comment
2324
hi def link Sep Comment
2425
hi def link FilePath String
2526
hi def link Target Label
27+
hi def link LogError Error
2628

2729
syn match HideAa "\`" conceal
2830

0 commit comments

Comments
 (0)