forked from j-hui/fidget.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfidget-option.txt
926 lines (582 loc) · 24.4 KB
/
fidget-option.txt
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
*fidget-option.txt* Fidget setup() options
==============================================================================
This file contains detailed documentation about all the setup() options that
Fidget supports.
For general documentation, see |fidget.txt|.
For Fidget's Lua API documentation, see |fidget-api.txt|.
==============================================================================
Table of Contents *fidget.option.toc*
Progress options .................................... |fidget.option.progress|
Progress display options .................... |fidget.option.progress.display|
Nvim LSP client options ......................... |fidget.option.progress.lsp|
Notification options ............................ |fidget.option.notification|
Notifications rendering options ............ |fidget.option.notification.view|
Notifications window options ............. |fidget.option.notification.window|
nvim-tree integration .................. |fidget.option.integration.nvim-tree|
Logging options ....................................... |fidget.option.logger|
==============================================================================
Progress options *fidget.option.progress*
progress.poll_rate *fidget.option.progress.poll_rate*
How and when to poll for progress messages
Set to `0` to immediately poll on each |LspProgress| event.
Set to a positive number to poll for progress messages at the specified
frequency (Hz, i.e., polls per second). Combining a slow `poll_rate`
(e.g., `0.5`) with the `ignore_done_already` setting can be used to filter
out short-lived progress tasks, de-cluttering notifications.
Note that if too many LSP progress messages are sent between polls,
Neovim's progress ring buffer will overflow and messages will be
overwritten (dropped), possibly causing stale progress notifications.
Workarounds include using the |fidget.option.progress.lsp.progress_ringbuf_size|
option, or manually calling |fidget.notification.reset| (see #167).
Set to `false` to disable polling altogether; you can still manually poll
progress messages by calling |fidget.progress.poll|.
Type: ~
`number|false`
Default: ~
`0`
progress.suppress_on_insert *fidget.option.progress.suppress_on_insert*
Suppress new messages while in insert mode
Note that progress messages for new tasks will be dropped, but existing
tasks will be processed to completion.
Type: ~
`boolean`
Default: ~
`false`
progress.ignore_done_already *fidget.option.progress.ignore_done_already*
Ignore new tasks that are already complete
This is useful if you want to avoid excessively bouncy behavior, and only
seeing notifications for long-running tasks. Works best when combined with
a low `poll_rate`.
Type: ~
`boolean`
Default: ~
`false`
progress.ignore_empty_message *fidget.option.progress.ignore_empty_message*
Ignore new tasks that don't contain a message
Some servers may send empty messages for tasks that don't actually exist.
And if those tasks are never completed, they will become stale in Fidget.
This option tells Fidget to ignore such messages unless the LSP server has
anything meaningful to say. (See #171)
Note that progress messages for new empty tasks will be dropped, but
existing tasks will be processed to completion.
Type: ~
`boolean`
Default: ~
`false`
progress.notification_group *fidget.option.progress.notification_group*
How to get a progress message's notification group key
Set this to return a constant to group all LSP progress messages together,
e.g.,
>lua
notification_group = function(msg)
-- N.B. you may also want to configure this group key ("lsp_progress")
-- using progress.display.overrides or notification.configs
return "lsp_progress"
end
<
Type: ~
`fun(msg: ProgressMessage): Key`
Default: ~
>lua
function(msg)
return msg.lsp_client.name
end
<
progress.clear_on_detach *fidget.option.progress.clear_on_detach*
Clear notification group when LSP server detaches
This option should be set to a function that, given a client ID number,
returns the notification group to clear. No group will be cleared if
the function returns `nil`.
The default setting looks up and returns the LSP client name, which is
also used by |fidget.option.progress.notification_group|.
Set this option to `false` to disable this feature entirely
(no |LspDetach| callback will be installed).
Type: ~
`false|fun(client_id: number): Key`
Default: ~
>lua
function(client_id)
local client = vim.lsp.get_client_by_id(client_id)
return client and client.name or nil
end
<
progress.ignore *fidget.option.progress.ignore*
List of filters to ignore LSP progress messages
Each filter is either a string or a function.
If it is a string, then it is treated as the name of a LSP server;
messages from that server are ignored.
If it is a function, then the progress message object is passed to the
function. If the function returns a truthy value, then that message is
ignored.
Example:
>lua
ignore = {
"rust_analyzer", -- Ignore all messages from rust-analyzer
function(msg) -- Ignore messages containing "ing"
return string.find(msg.title, "ing") ~= nil
end,
}
<
Type: ~
`(string|fun(msg: ProgressMessage): any)[]`
Default: ~
`{}`
==============================================================================
Progress display options *fidget.option.progress.display*
progress.display.render_limit *fidget.option.progress.display.render_limit*
How many LSP messages to show at once
If `false`, no limit.
This is used to configure each LSP notification group, so by default,
this is a per-server limit.
Type: ~
`number|false`
Default: ~
`16`
progress.display.done_ttl *fidget.option.progress.display.done_ttl*
How long a message should persist after completion
Set to `0` to use notification group config default, and `math.huge` to
show notification indefinitely (until overwritten).
Measured in seconds.
Type: ~
`number`
Default: ~
`3`
progress.display.done_icon *fidget.option.progress.display.done_icon*
Icon shown when all LSP progress tasks are complete
When a string literal is given (e.g., `"✔"`), it is used as a static icon;
when a table (e.g., `{"dots"}` or `{ pattern = "clock", period = 2 }`) is
given, it is used to generate an animation function; when a function is
specified (e.g., `function(now) return now % 2 < 1 and "+" or "-" end`),
it is used as the animation function.
See also: |fidget.spinner.Manga| and |fidget.spinner.Anime|.
Type: ~
`string|Manga|Anime`
Default: ~
`"✔"`
progress.display.done_style *fidget.option.progress.display.done_style*
Highlight group for completed LSP tasks
Type: ~
`string`
Default: ~
`"Constant"`
progress.display.progress_ttl *fidget.option.progress.display.progress_ttl*
How long a message should persist when in progress
Set to `0` to use notification group config default, and `math.huge` to
show notification indefinitely (until overwritten).
Measured in seconds.
Type: ~
`number`
Default: ~
`math.huge`
progress.display.progress_icon *fidget.option.progress.display.progress_icon*
Icon shown when LSP progress tasks are in progress
When a string literal is given (e.g., `"✔"`), it is used as a static icon;
when a table (e.g., `{"dots"}` or `{ pattern = "clock", period = 2 }`) is
given, it is used to generate an animation function; when a function is
specified (e.g., `function(now) return now % 2 < 1 and "+" or "-" end`),
it is used as the animation function.
Type: ~
`string|Manga|Anime`
Default: ~
`{ "dots" }`
progress.display.progress_style *fidget.option.progress.display.progress_style*
Highlight group for in-progress LSP tasks
Type: ~
`string`
Default: ~
`"WarningMsg"`
progress.display.group_style *fidget.option.progress.display.group_style*
Highlight group for group name (LSP server name)
Type: ~
`string`
Default: ~
`"Title"`
progress.display.icon_style *fidget.option.progress.display.icon_style*
Highlight group for group icons
Type: ~
`string`
Default: ~
`"Question"`
progress.display.priority *fidget.option.progress.display.priority*
Ordering priority for LSP notification group
Type: ~
`number|false`
Default: ~
`30`
progress.display.skip_history *fidget.option.progress.display.skip_history*
Whether progress notifications should be omitted from history
Type: ~
`boolean`
Default: ~
`true`
progress.display.format_message *fidget.option.progress.display.format_message*
How to format a progress message
Example: ~
>lua
format_message = function(msg)
if string.find(msg.title, "Indexing") then
return nil -- Ignore "Indexing..." progress messages
end
if msg.message then
return msg.message
else
return msg.done and "Completed" or "In progress..."
end
end
<
Note that the default value is something like:
>lua
function fidget.display.default_format_message(msg)
local message = msg.message
if not message then
message = msg.done and "Completed" or "In progress..."
end
if msg.percentage ~= nil then
message = string.format("%s (%.0f%%)", message, msg.percentage)
end
return message
end
<
(See plugin source code for ground truth in case docs are out of date.)
Type: ~
`fun(msg: ProgressMessage): string`
Default: ~
`M.default_format_message`
progress.display.format_annote *fidget.option.progress.display.format_annote*
How to format a progress annotation
Type: ~
`fun(msg: ProgressMessage): string`
Default: ~
>lua
function(msg)
return msg.title
end
<
progress.display.format_group_name *fidget.option.progress.display.format_group_name*
How to format a progress notification group's name
Example:
>lua
format_group_name = function(group)
return "lsp:" .. tostring(group)
end
<
Type: ~
`fun(group: Key): Display`
Default: ~
`tostring`
progress.display.overrides *fidget.option.progress.display.overrides*
Override options from the default notification config
Keys of the table are each notification group's `key`.
Example:
>lua
overrides = {
hls = {
name = "Haskell Language Server",
priority = 60,
icon = fidget.progress.display.for_icon(fidget.spinner.animate("triangle", 3), "💯"),
skip_history = false,
},
rust_analyzer = {
name = "Rust Analyzer",
icon = fidget.progress.display.for_icon(fidget.spinner.animate("arrow", 2.5), "🦀"),
update_hook = function(item)
require("fidget.notification").set_content_key(item)
if item.hidden == nil and string.match(item.annote, "clippy") then
-- Hide clippy-related notifications
item.hidden = true
end
end,
},
}
<
Type: ~
`{ [Key]: Config }`
Default: ~
>lua
{
rust_analyzer = { name = "rust-analyzer", },
}
<
==============================================================================
Nvim LSP client options *fidget.option.progress.lsp*
progress.lsp.progress_ringbuf_size *fidget.option.progress.lsp.progress_ringbuf_size*
Configure the nvim's LSP progress ring buffer size
Useful for avoiding progress message overflow when the LSP server blasts
more messages than the ring buffer can handle (see #167).
Leaves the progress ringbuf size at its default if this setting is 0 or
less. Doesn't do anything for Neovim pre-v0.10.0.
Type: ~
`number`
Default: ~
`0`
progress.lsp.log_handler *fidget.option.progress.lsp.log_handler*
Log `$/progress` handler invocations (for debugging)
Works by wrapping `vim.lsp.handlers["$/progress"]` with Fidget's logger.
Invocations are logged at the `vim.log.levels.INFO` level.
This option exists primarily for debugging; leaving this set to `true` is
not recommended.
Since it works by overriding Neovim's existing `$/progress` handler, you
should not use this function if you'd like Neovim to use your overriden
`$/progress` handler! It will conflict with the handler that Fidget tries
to install for logging purposes.
Default: ~
`false`
==============================================================================
Notification options *fidget.option.notification*
notification.poll_rate *fidget.option.notification.poll_rate*
How frequently to update and render notifications
Measured in Hertz (frames per second).
Type: ~
`number`
Default: ~
`10`
notification.filter *fidget.option.notification.filter*
Minimum notifications level
Note that this filter only applies to notifications with an explicit
numeric level (i.e., `vim.log.levels`).
Set to `vim.log.levels.OFF` to filter out all notifications with an
numeric level, or `vim.log.levels.TRACE` to turn off filtering.
Type: ~
`0|1|2|3|4|5`
Default: ~
`vim.log.levels.INFO`
notification.history_size *fidget.option.notification.history_size*
Number of removed messages to retain in history
Set to 0 to keep around history indefinitely (until cleared).
Type: ~
`number`
Default: ~
`128`
notification.override_vim_notify *fidget.option.notification.override_vim_notify*
Automatically override vim.notify() with Fidget
Equivalent to the following:
>lua
fidget.setup({ --[[ options ]] })
vim.notify = fidget.notify
<
Type: ~
`boolean`
Default: ~
`false`
notification.configs *fidget.option.notification.configs*
How to configure notification groups when instantiated
A configuration with the key `"default"` should always be specified, and
is used as the fallback for notifications lacking a group key.
To see the default config, run:
>vim
:lua print(vim.inspect(require("fidget.notification").default_config))
<
Type: ~
`table<Key, Config>`
Default: ~
`{ default = notification.default_config }`
notification.redirect *fidget.option.notification.redirect*
Conditionally redirect notifications to another backend
This option is useful for delegating notifications to another backend that
supports features Fidget has not (yet) implemented.
For instance, Fidget uses a single, shared buffer and window for rendering
all notifications, so it lacks a per-notification `on_open` callback that
can be used to, e.g., set the |filetype| for a specific notification.
For such notifications, Fidget's default `redirect` delegates such
notifications with an `on_open` callback to |nvim-notify| (if available).
Type: ~
`false|fun(msg: string|nil, level: Level|nil, opts: table|nil): (boolean|nil)`
Default: ~
>lua
function(msg, level, opts)
if opts and opts.on_open then
return require("fidget.integration.nvim-notify").delegate(msg, level, opts)
end
end
<
==============================================================================
Notifications rendering options *fidget.option.notification.view*
notification.view.stack_upwards *fidget.option.notification.view.stack_upwards*
Display notification items from bottom to top
Setting this to true tends to lead to more stable animations when the
window is bottom-aligned.
Type: ~
`boolean`
Default: ~
`true`
notification.view.icon_separator *fidget.option.notification.view.icon_separator*
Separator between group name and icon
Must not contain any newlines. Set to `""` to remove the gap between names
and icons in all notification groups.
Type: ~
`string`
Default: ~
`" "`
notification.view.group_separator *fidget.option.notification.view.group_separator*
Separator between notification groups
Must not contain any newlines. Set to `false` to omit separator entirely.
Type: ~
`string|false`
Default: ~
`"--"`
notification.view.group_separator_hl *fidget.option.notification.view.group_separator_hl*
Highlight group used for group separator
Type: ~
`string|false`
Default: ~
`"Comment"`
notification.view.render_message *fidget.option.notification.view.render_message*
How to render notification messages
Messages that appear multiple times (have the same `content_key`) will
only be rendered once, with a `cnt` greater than 1. This hook provides an
opportunity to customize how such messages should appear.
Note that if this returns an empty string, the notification will not be
rendered.
See also:~
|fidget.notification.Config|
|fidget.notification.default_config|
|fidget.notification.set_content_key|
Type: ~
`fun(msg: string, cnt: number): string`
Default: ~
`function(msg, cnt) return cnt == 1 and msg or string.format("(%dx) %s", cnt, msg) end`
==============================================================================
Notifications window options *fidget.option.notification.window*
notification.window.normal_hl *fidget.option.notification.window.normal_hl*
Base highlight group in the notification window
Used by any Fidget notification text that is not otherwise highlighted,
i.e., message text.
Note that we use this blanket highlight for all messages to avoid adding
separate highlights to each line (whose lengths may vary).
Set to empty string to keep your theme defaults.
With `winblend` set to anything less than `100`, this will also affect the
background color in the notification box area (see `winblend` docs).
Type: ~
`string`
Default: ~
`"Comment"`
notification.window.winblend *fidget.option.notification.window.winblend*
Background color opacity in the notification window
Note that the notification window is rectangular, so any cells covered by
that rectangular area is affected by the background color of `normal_hl`.
With `winblend` set to anything less than `100`, the background of
`normal_hl` will be blended with that of whatever is underneath,
including, e.g., a shaded `colorcolumn`, which is usually not desirable.
However, if you would like to display the notification window as its own
"boxed" area (especially if you are using a non-"none" `border`), you may
consider setting `winblend` to something less than `100`.
See also: options for |nvim_open_win()|
Type: ~
`number`
Default: ~
`100`
notification.window.border *fidget.option.notification.window.border*
Border around the notification window
See also: options for |nvim_open_win()|
Type: ~
`"none"|"single"|"double"|"rounded"|"solid"|"shadow"|string[]`
Default: ~
`"none"`
notification.window.border_hl *fidget.option.notification.window.border_hl*
Highlight group for notification window border
Set to empty string to keep your theme's default `FloatBorder` highlight.
Type: ~
`string`
Default: ~
`""`
notification.window.zindex *fidget.option.notification.window.zindex*
Stacking priority of the notification window
Note that the default priority for Vim windows is 50.
See also: options for |nvim_open_win()|
Type: ~
`number`
Default: ~
`45`
notification.window.max_width *fidget.option.notification.window.max_width*
Maximum width of the notification window
`0` means no maximum width.
Type: ~
`integer`
Default: ~
`0`
notification.window.max_height *fidget.option.notification.window.max_height*
Maximum height of the notification window
`0` means no maximum height.
Type: ~
`integer`
Default: ~
`0`
notification.window.x_padding *fidget.option.notification.window.x_padding*
Padding from right edge of window boundary
Type: ~
`integer`
Default: ~
`1`
notification.window.y_padding *fidget.option.notification.window.y_padding*
Padding from bottom edge of window boundary
Type: ~
`integer`
Default: ~
`0`
notification.window.align *fidget.option.notification.window.align*
How to align the notification window
Type: ~
`"top"|"bottom"|"avoid_cursor"`
Default: ~
`"bottom"`
notification.window.relative *fidget.option.notification.window.relative*
What the notification window position is relative to
See also: options for |nvim_open_win()|
Type: ~
`"editor"|"win"`
Default: ~
`"editor"`
==============================================================================
nvim-tree integration *fidget.option.integration.nvim-tree*
integration.nvim-tree.enable *fidget.option.integration.nvim-tree.enable*
Integrate with nvim-tree/nvim-tree.lua (if installed)
Dynamically offset Fidget's notifications window when the nvim-tree window
is open on the right side + the Fidget window is "editor"-relative.
Type: ~
`boolean`
Default: ~
`true`
==============================================================================
Logging options *fidget.option.logger*
logger.level *fidget.option.logger.level*
Minimum logging level
Set to `vim.log.levels.OFF` to disable logging, or `vim.log.levels.TRACE`
to enable all logging.
Note that this option only filters logging (useful for debugging), and is
different from `notification.filter`, which filters `notify()` messages.
Type: ~
`0|1|2|3|4|5`
Default: ~
`vim.log.levels.WARN`
logger.max_size *fidget.option.logger.max_size*
Maximum log file size, in KB
If this option is set to `false`, the log file will be let to grow
indefinitely.
When the log file exceeds this size, it is backed up with suffix `.bak`,
overwriting any possible previous backup. Thus, the maximum on-disk
footprint of Fidget logs is approximately twice `logger.max_size`.
If you would like to retain the backup log, copy it manually.
Note that there is a possible race condition when two concurrent Neovim
processes both try to back up the log file. Thus, a fresh backup log file
may be clobbered by a concurrent Neovim process, before you have a chance
to back move it somewhere safe for later inspection. So, when debugging
Fidget, run only one instance of Neovim, or set this option to `false`.
Type: ~
`number | false`
Default: ~
`10000`
logger.float_precision *fidget.option.logger.float_precision*
Limit the number of decimals displayed for floats
Type: ~
`number`
Default: ~
`0.01`
logger.path *fidget.option.logger.path*
Where Fidget writes its logs to
Using `vim.fn.stdpath("cache")`, the default path usually ends up at
`~/.cache/nvim/fidget.nvim.log`.
Type: ~
`string`
Default: ~
`string.format("%s/fidget.nvim.log", vim.fn.stdpath("cache"))`
vim:tw=78:ts=4:ft=help:norl: