-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathformat.lua
161 lines (158 loc) · 3.65 KB
/
format.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
local M = {}
---@type table<string, NoiceFormat>
M.builtin = {
default = { "{level} ", "{title} ", "{message}" },
notify = { "{message}" },
details = {
"{level} ",
"{date} ",
"{event}",
{ "{kind}", before = { ".", hl_group = "NoiceFormatKind" } },
" ",
"{title} ",
"{cmdline} ",
"{message}",
},
telescope = {
"{level} ",
"{date} ",
"{title} ",
"{message}",
},
telescope_preview = {
"{level} ",
"{date} ",
"{event}",
{ "{kind}", before = { ".", hl_group = "NoiceFormatKind" } },
"\n",
"{title}\n",
"\n",
"{message}",
},
fzf = {
"{level} ",
"{date} ",
"{title} ",
"{message}",
},
fzf_preview = {
"{level} ",
"{date} ",
"{event}",
{ "{kind}", before = { ".", hl_group = "NoiceFormatKind" } },
"\n",
"{title}\n",
"\n",
"{message}",
},
snacks = {
"{level} ",
"{date} ",
"{title} ",
"{message}",
},
snacks_preview = {
"{level} ",
"{date} ",
"{event}",
{ "{kind}", before = { ".", hl_group = "NoiceFormatKind" } },
"\n",
"{title}\n",
"\n",
"{message}",
},
lsp_progress = {
{
"{progress} ",
key = "progress.percentage",
contents = {
{ "{data.progress.message} " },
},
},
"({data.progress.percentage}%) ",
{ "{spinner} ", hl_group = "NoiceLspProgressSpinner" },
{ "{data.progress.title} ", hl_group = "NoiceLspProgressTitle" },
{ "{data.progress.client} ", hl_group = "NoiceLspProgressClient" },
},
lsp_progress_done = {
{ "✔ ", hl_group = "NoiceLspProgressSpinner" },
{ "{data.progress.title} ", hl_group = "NoiceLspProgressTitle" },
{ "{data.progress.client} ", hl_group = "NoiceLspProgressClient" },
},
}
---@class NoiceFormatOptions
M.defaults = {
---@class NoiceFormatOptions.debug
debug = {
enabled = true,
},
---@class NoiceFormatOptions.cmdline
cmdline = {},
---@class NoiceFormatOptions.level
level = {
hl_group = {
trace = "NoiceFormatLevelTrace",
debug = "NoiceFormatLevelDebug",
info = "NoiceFormatLevelInfo",
warn = "NoiceFormatLevelWarn",
error = "NoiceFormatLevelError",
off = "NoiceFormatLevelOff",
},
icons = { error = " ", warn = " ", info = " " },
},
---@class NoiceFormatOptions.progress
progress = {
---@type NoiceFormat
contents = {},
width = 20,
align = "right",
key = "progress", -- key in message.opts For example: "progress.percentage"
hl_group = "NoiceFormatProgressTodo",
hl_group_done = "NoiceFormatProgressDone",
},
---@class NoiceFormatOptions.text
text = {
text = nil,
hl_group = nil,
},
---@class NoiceFormatOptions.spinner
spinner = {
---@type Spinner
name = "dots",
hl_group = nil,
},
---@class NoiceFormatOptions.data
data = {
key = nil, -- Key in the message.opts object.
hl_group = nil, -- Optional hl_group
},
---@class NoiceFormatOptions.title
title = {
hl_group = "NoiceFormatTitle",
},
---@class NoiceFormatOptions.event
event = {
hl_group = "NoiceFormatEvent",
},
---@class NoiceFormatOptions.kind
kind = {
hl_group = "NoiceFormatKind",
},
---@class NoiceFormatOptions.date
date = {
format = "%X", --- @see https://www.lua.org/pil/22.1.html
hl_group = "NoiceFormatDate",
},
---@class NoiceFormatOptions.message
message = {
hl_group = nil, -- if set, then the hl_group will be used instead of the message highlights
},
---@class NoiceFormatOptions.confirm
confirm = {
hl_group = {
choice = "NoiceFormatConfirm",
default_choice = "NoiceFormatConfirmDefault",
},
},
}
return M