Is your feature request related to a problem?
Plugins can set status messages using matcha.set_status(area, text), but there is no explicit way to clear a status message other than setting it to an empty string.
Describe the solution you'd like
Add a matcha.clear_status(area) function or allow matcha.set_status(area, nil) to explicitly remove a status message.
Describe alternatives you've considered
Setting to an empty string (current way, but less explicit).
Additional context
Check plugin/api.go:luaSetStatus.
Is your feature request related to a problem?
Plugins can set status messages using
matcha.set_status(area, text), but there is no explicit way to clear a status message other than setting it to an empty string.Describe the solution you'd like
Add a
matcha.clear_status(area)function or allowmatcha.set_status(area, nil)to explicitly remove a status message.Describe alternatives you've considered
Setting to an empty string (current way, but less explicit).
Additional context
Check
plugin/api.go:luaSetStatus.