plugins.fidget.progress.display.doneIcon
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 list or attrs (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.,
{__raw = "function(now) return now % 2 < 1 and '+' or '-' end";}
), it is used as the animation function.
Plugin default: ✔
Type: null or string or raw lua code or list of string or attribute set of (string or (unsigned integer, meaning >=0))
Default:
null
Declared by:
plugins.fidget.progress.display.doneStyle
Highlight group for completed LSP tasks.
Plugin default: "Constant"
Type: null or string or raw lua code
Default:
null
Declared by:
plugins.fidget.progress.display.doneTtl
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.
Plugin default: 3
Type: null or lua code string or (unsigned integer, meaning >=0)
Default:
null
Declared by:
plugins.fidget.progress.display.formatAnnote
How to format a progress annotation.
Plugin default: function(msg) return msg.title end
Type: null or lua function string
Default:
null
Declared by:
plugins.fidget.progress.display.formatGroupName
How to format a progress notification group’s name.
Plugin default: function(group) return tostring(group) end
Type: null or lua function string
Default:
null
Declared by:
plugins.fidget.progress.display.formatMessage
How to format a progress message.
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
Plugin default: require('fidget.progress.display').default_format_message
Type: null or lua code string
Default:
null
Declared by:
plugins.fidget.progress.display.groupStyle
Highlight group for group name (LSP server name).
Plugin default: "Title"
Type: null or string or raw lua code
Default:
null
Declared by:
plugins.fidget.progress.display.iconStyle
Highlight group for group icons.
Plugin default: "Question"
Type: null or string or raw lua code
Default:
null
Declared by:
plugins.fidget.progress.display.priority
Ordering priority for LSP notification group.
Plugin default: 30
Type: null or unsigned integer, meaning >=0, or raw lua code
Default:
null
Declared by:
plugins.fidget.progress.display.progressIcon
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 list or attrs (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.,
{__raw = "function(now) return now % 2 < 1 and '+' or '-' end";}
), it is used as the animation function.
Plugin default:
{
pattern = "dots";
}
Type: null or string or raw lua code or list of string or attribute set of (string or (unsigned integer, meaning >=0))
Default:
null
Declared by:
plugins.fidget.progress.display.progressStyle
Highlight group for in-progress LSP tasks.
Plugin default: "WarningMsg"
Type: null or string or raw lua code
Default:
null
Declared by:
plugins.fidget.progress.display.progressTtl
How long a message should persist when in progress.
Plugin default: math.huge
Type: null or lua function string or (unsigned integer, meaning >=0)
Default:
null
Declared by:
plugins.fidget.progress.display.renderLimit
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.
Plugin default: 16
Type: null or value false (singular enum) or signed integer or floating point number
Default:
null
Declared by:
plugins.fidget.progress.display.skipHistory
Whether progress notifications should be omitted from history.
Plugin default: true
Type: null or boolean or raw lua code
Default:
null
Declared by: