File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ local finder = require("telescope.finders").new_table
5
5
local picker = require (" telescope.pickers" ).new
6
6
local sorter = require (" telescope.config" ).values .generic_sorter
7
7
local maker = require (" telescope.pickers.entry_display" ).create
8
- local actions = require " worktree.actions"
9
8
local xcodebase = require " xcodebase"
10
9
11
10
--[[
Original file line number Diff line number Diff line change @@ -10,19 +10,21 @@ syn match Operations "\(Executing\|Compiling\|Processing\|Emitting\|Compilin
10
10
syn match Entitlement " Entitlement"
11
11
syn match Package " Packaging"
12
12
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\]\) "
14
15
syn match Target " `\(\w .*\) `"
15
16
syn match FilePath " `\(\/ .*\) `"
16
17
syn region Sep display oneline start =' -' end =' -$'
17
18
18
19
hi def link Scope Label
19
- hi def link Success healthSuccess
20
+ hi def link LogSuccess healthSuccess
20
21
hi def link Operations Function
21
22
hi def link Entitlement Comment
22
23
hi def link Package Comment
23
24
hi def link Sep Comment
24
25
hi def link FilePath String
25
26
hi def link Target Label
27
+ hi def link LogError Error
26
28
27
29
syn match HideAa " \` " conceal
28
30
You can’t perform that action at this time.
0 commit comments